Update JS unit test libs

Update sinon to 1.15.4.
Update karma-jasmine to 0.3.0
Update jasmine to 2.3.4

This brings a bunch of new useful functions for unit testing.
remotes/origin/handlebars-approach
Vincent Petry 10 years ago
parent 176dabd976
commit 9d71542ee4
  1. 5
      build/package.json
  2. 5949
      core/js/tests/lib/sinon-1.15.4.js
  3. 4290
      core/js/tests/lib/sinon-1.7.3.js
  4. 2
      tests/karma.config.js

@ -12,11 +12,12 @@
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"karma": "~0.12.0", "karma": "~0.12.0",
"karma-jasmine": "~0.2.0", "karma-jasmine": "~0.3.0",
"karma-junit-reporter": "*", "karma-junit-reporter": "*",
"karma-coverage": "*", "karma-coverage": "*",
"karma-phantomjs-launcher": "*", "karma-phantomjs-launcher": "*",
"phantomjs": "*" "phantomjs": "*",
"jasmine-core": "~2.3.4"
}, },
"engine": "node >= 0.8" "engine": "node >= 0.8"
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -121,7 +121,7 @@ module.exports = function(config) {
} }
// extra test libs // extra test libs
files.push(corePath + 'tests/lib/sinon-1.7.3.js'); files.push(corePath + 'tests/lib/sinon-1.15.4.js');
// core mocks // core mocks
files.push(corePath + 'tests/specHelper.js'); files.push(corePath + 'tests/specHelper.js');

Loading…
Cancel
Save