I have lots of Jasmine unit tests, that are running unit tests for Javascripts code. They are using Jasmine-jquery plugin to do DOM manipulation. they use loadFixture, to load f
Just to clarify a bit the previous posting.
If in your jsTestDriver config file you have:
serve:
spec/fixtures/*_fixture.html
Then, you need to override your test suite with
jasmine.getFixtures().fixturesPath = '/test/spec/fixtures';
Which is basically /test/ + whatever path you declare in the serve section in your jsTestDriver config file.