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 fixtures of HTML

I tried to automate those unit tests, using JsTestDriver, with JasmineAdapter But all tests involve DOM-jquery manipulation are not passing? Is there something wrong with that? Is there a way to use Jasmine-jquery with JsTestDriver?

link|improve this question

48% accept rate
feedback

2 Answers

up vote 4 down vote accepted

I will answer myself because I found a solution for this problem. The problem was Jasmine-Jquery is using ajax to load the html fixture, and it uses a relative path, assuming the html fixtures are located in somewhere relative to the HTML container that is running Jasmine tests. but because JsTestDriver is loading the tests inside its own "space", so we have to change the location, where Jasmine-Jquery looks for those html fixtures, and make JsTestDriver load them.

so the solution is as follows:

JsTestDriver has the ability to load static html files. in config file add the following:

Serve: - for example: Serve: - fixtures*.html

now you can access those with the following format http:localhost:9876/test/fixtures/... you let Jasmine-jquery knows to load the fixtures from this location.

and voila, you will have your tests working again.

link|improve this answer
I have my jar file running in my folder "jasmine" Inside there I have lib/jasmine-core/jasmine.js. i also have scripts/test.js and fixtures/text.html. I did Serve:- fixtures/*.html but I'm still getting panic errors with 'fixtures' '/fixtures' and other variations when setting jasmines fixturePath. Any ideas? – Dave Stein Mar 8 at 23:37
Ah I read Monica's answer and saw I needed to put /test/ in front. That solved it. The localhost example was throwing me off a bit since my server is not on localhost. – Dave Stein Mar 9 at 0:03
This doesn't seem to work for JsTestDriver-1.3.4-a.jar – fritzfromlondon 2 mins ago
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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