I'm having a hard time getting JSTD to load a fixture HTML file.

My directory structure is:

 localhost/JsTestDriver.conf
 localhost/JsTestDriver.jar
 localhost/js/App.js
 localhost/js/App.test.js
 localhost/fixtures/index.html

My conf file says:

server: http://localhost:4224

serve:

- fixtures/*.html

load: 

- http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js
- jasmine/lib/jasmine-1.1.0/jasmine.js
- jasmine/jasmine-jquery-1.3.1.js
- jasmine/jasmine-jstd.js
- js/App.js

test: 

- js/App.test.js

My test is:

describe("App", function(){

    beforeEach(function(){
        jasmine.getFixtures().fixturesPath = 'fixtures';
        loadFixtures('index.html'); **//THIS LINE CAUSES IT TO FAIL**
    });

    describe("When App is loaded", function(){

        it('should have a window object', function(){
            expect(window).not.toBe(null);
        });

    });

});

And my console output is:

enter image description here

(link to full-size image)

I looked at this question but it didn't help me figure it out. The weird thing is, when I comment out the

loadFixtures('index.html');

line, the test passes.

Any ideas?

link|improve this question

76% accept rate
feedback

1 Answer

Try changing the fixture path to:

jasmine.getFixtures().fixturesPath = '/fixtures';

I get different, but similarly weird errors otherwise.

link|improve this answer
Then I get "Error: Fixture could not be loaded: /fixtures/index.html (status: error, message: undefined)". Thanks anyway :) – kaneuniversal Jan 18 at 22:11
Did you end up solving this? I get that exact error, although sometimes it changes to a browserpanic error – Dave Stein Mar 8 at 23:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.