Upgrade jasmine to 2

This commit is contained in:
Simen Bekkhus 2016-02-28 09:28:42 +01:00
parent 4a69c9a013
commit 75175a6297
3 changed files with 11 additions and 3 deletions

View File

@ -10,7 +10,7 @@
],
"scripts": {
"pretest": "semistandard",
"test": "jasmine-node --captureExceptions spec"
"test": "jasmine"
},
"repository": {
"type": "git",
@ -38,7 +38,7 @@
"html-loader": "^0.4.0",
"jade": "^1.11.0",
"jade-loader": "^0.8.0",
"jasmine-node": "^1.14.5",
"jasmine": "^2.4.1",
"rimraf": "^2.5.0",
"semistandard": "^7.0.5",
"style-loader": "^0.13.0",

View File

@ -1,4 +1,4 @@
/* global describe, it, beforeEach, expect */
/* eslint-env jasmine */
'use strict';
// Workaround for css-loader issue

View File

@ -0,0 +1,8 @@
{
"spec_dir": "spec",
"spec_files": [
"**/*[sS]pec.js"
],
"stopSpecOnExpectationFailure": false,
"random": true
}