You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the outfile option for jasmine is set, the path to the require.js lib won't be correct anymore...
These settings...
{src: 'src/**/*.js',options: {specs: ['testing/specs/*.js'],keepRunner: true,outfile: 'testing/specs/specs.html',template: require('grunt-template-jasmine-requirejs'),templateOptions: {// some config...}}}
...generate the following script pathes:
<!-- not correct --><scriptsrc=".grunt/grunt-contrib-jasmine/require.js"></script><!-- works fine --><scriptsrc="../../.grunt/grunt-contrib-jasmine/jasmine.js"></script><scriptsrc="../../.grunt/grunt-contrib-jasmine/jasmine-html.js"></script>
The text was updated successfully, but these errors were encountered:
When the
outfile
option for jasmine is set, the path to the require.js lib won't be correct anymore...These settings...
...generate the following script pathes:
The text was updated successfully, but these errors were encountered: