Skip to content

Commit aa24830

Browse files
committed
Updated to use jasmine 2
1 parent f50e56b commit aa24830

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"bplist-parser": "^0.0.6"
3131
},
3232
"devDependencies": {
33-
"jasmine-node": "^1.14.5",
33+
"jasmine": "~2.6.0",
3434
"jscs": "^2.11.0",
3535
"jshint": "^2.9.1"
3636
},
@@ -40,6 +40,6 @@
4040
"jshint": "jshint src ./ios-sim.js",
4141
"postjshint": "npm run jscs",
4242
"jscs": "jscs src ./ios-sim.js",
43-
"jasmine": "jasmine-node --captureExceptions --color spec"
43+
"jasmine": "jasmine --config=spec/jasmine.json"
4444
}
4545
}

spec/jasmine.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"spec_dir": "spec",
3+
"spec_files": [
4+
"**/*[sS]pec.js"
5+
],
6+
"stopSpecOnExpectationFailure": false,
7+
"random": false
8+
}

0 commit comments

Comments
 (0)