I tried to run a jasmine unit test in resharper 7 in vs2012 but its failing.
resharper + phantomjs is running it in autogenerated url which maybe the cause of the failure
is there a way to configure the test to use an absolute or a known URL?
UPDATE
I added js reference in my *spec.js file
/// <reference path="../jasmine/jasmine-html.js" />
/// <reference path="../jasmine/jasmine.js" />
/// <reference path="../jasmine/boot.js" />
/// <reference path="../jasmine/console.js" />
/// <reference path="Player.js" />
/// <reference path="Song.js" />
/// <reference path="SpecHelper.js" />
and it fixed the reference error, but when i run it in resharper it still wont pass. now i have this error when i try to debug
I also try running the test in chutzpah and it was to able to execute and pass the test so i'm not sure what is wrong with resharper