Skip to content

Commit 58ace2d

Browse files
committedAug 28, 2021
Merge branch 'main' into 3.99
2 parents d8d5473 + 42b10d5 commit 58ace2d

21 files changed

+809
-118
lines changed
 

‎.npmignore

-5
This file was deleted.

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
# The Jasmine Module
55

6-
The `jasmine` module is a package of helper code for developing Jasmine projects for Node.js.
6+
The `jasmine` module is a command line interface and supporting code for running
7+
[Jasmine](https://github.com/jasmine/jasmine) specs under Node.
78

89
The core of jasmine lives at https://github.com/jasmine/jasmine and is `jasmine-core` in npm.
910

‎lib/examples/jasmine.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"spec_dir": "spec",
33
"spec_files": [
4-
"**/*[sS]pec.js"
4+
"**/*[sS]pec.?(m)js"
55
],
66
"helpers": [
7-
"helpers/**/*.js"
7+
"helpers/**/*.?(m)js"
88
],
99
"stopSpecOnExpectationFailure": false,
1010
"random": true

0 commit comments

Comments
 (0)
Please sign in to comment.