View.test.js initializes jQuery before calling JSDom.
This should result in a failing test, however, because the previous test, Skin.test.js, doesn't tear down jQuery, View.test.js still has access to that old jQuery instance, and the tests pass.
When the order of the tests changes however, View.test.js no longer has access to the old jQuery instance and the View.test.js test fails.