I am just creating this issue since it doesn't appear to exist yet. I am not sure what the best solution is. I am going to try to summarize the problem as best as I can.
As reported in gruntjs/grunt-contrib-jasmine#255, an update was made to gruntjs/grunt-contrib-jasmine which has caused the location of temporary files to change. This means that when _SpecRunner.html (a generated files) is executed it cannot locate the require.js file and task fails.
This issue results in output similar to this:
>> ReferenceError: Can't find variable: require at
>> http:/127.0.0.1:8001/_SpecRunner.html:30 global code
>> ReferenceError: Can't find variable: require at
>> http:/127.0.0.1:8001/_SpecRunner.html:46 global code
>> ReferenceError: Can't find variable: require at
>> http:/127.0.0.1:8001/_SpecRunner.html:147 launchTest
Myself and others have found that reverting grunt-contrib-jasmine to version 1.0.3 resolves the issue, however this seems like a far from ideal solution and is by no means a permanent one.
I am just creating this issue since it doesn't appear to exist yet. I am not sure what the best solution is. I am going to try to summarize the problem as best as I can.
As reported in gruntjs/grunt-contrib-jasmine#255, an update was made to gruntjs/grunt-contrib-jasmine which has caused the location of temporary files to change. This means that when _SpecRunner.html (a generated files) is executed it cannot locate the
require.jsfile and task fails.This issue results in output similar to this:
Myself and others have found that reverting
grunt-contrib-jasmineto version 1.0.3 resolves the issue, however this seems like a far from ideal solution and is by no means a permanent one.