Why Does Adding A Reference To Jasmine.js Break My ReSharper Test?
I am trying to use Resharper to run my Javascript unit tests using phantomJS [Headless] with Visual Studio. When I include a reference to jasmine in my file it breaks the test. How
Solution 1:
I think that's because Angular
comes bundled with Karma by default - and Karma
supports tests with Jasmine
syntax out of the box.
There might be a framework crash somewhere...
So just remove the inclusion of Jasmine
(the line you're already commenting out) and you'll be fine.
Post a Comment for "Why Does Adding A Reference To Jasmine.js Break My ReSharper Test?"