-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Script files seem to be in a different order now #78
Comments
As with v0.2.2, |
I have the same issue. I changed the order locally but this will not work in my Jenkins build since it can't see my local change to node_modules |
In the template the vendor scripts are being loaded before the core jasmine files which results in "jasmine" being undefined when using the jasmine-jquery plugin. I can manually change the order of the scripts being loaded in the template to work locally. However in my build job in Jenkins one of the tasks is "npm install" to install all node_modules based on package.json. Therefor my local changes won't be reflected in Jenkins. Reverting to 0.2.0 where the scripts are loaded correctly fixed my issue, |
@ryan0122, the loading order has changed. When #65 git fixed, by 890766c, not only the
Use If
I admit, that there's probably no real-world use case for this... |
As of 0.2.2 the script files are being loaded up in a way that breaks our test runner. Here is our config:
We reverted back to 0.2.0 and everything with our test runner was fixed. It seems like jasmine is now being included after jasmine-sinon.
The text was updated successfully, but these errors were encountered: