Reputation: 96484
I thought it was SpecRunner.html
but changing that doesn't affect running my spec.
My specs are in spec/
and my source code is in src/
Upvotes: 0
Views: 19
Reputation: 96484
Configure this file:
spec/javascript/support/jasmine.yml
Put values for src
and spec
(existing sections within the file) like this:
src_files:
- src/**/*.js
and
spec_files: 'spec/**/*[Ss]pec.js'
Upvotes: 1