Skip to content

Commit

Permalink
Default to including .mjs as well as .js in newly generated config files
Browse files Browse the repository at this point in the history
* Fixes #176
  • Loading branch information
sgravrock committed Jul 9, 2021
1 parent 518454b commit 9b1f112
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/examples/jasmine.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"spec_dir": "spec",
"spec_files": [
"**/*[sS]pec.js"
"**/*[sS]pec.?(m)js"
],
"helpers": [
"helpers/**/*.js"
"helpers/**/*.?(m)js"
],
"stopSpecOnExpectationFailure": false,
"random": true
Expand Down

0 comments on commit 9b1f112

Please sign in to comment.