Skip to content

Commit 3c20278

Browse files
committed
update dev dependencies
1 parent b58db14 commit 3c20278

File tree

3 files changed

+17
-20
lines changed

3 files changed

+17
-20
lines changed

build/grunt-tasks/casper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = function (grunt) {
99
var file = id ? id + '.js' : ''
1010
// let casperjs use local phantomjs
1111
process.env.PHANTOMJS_EXECUTABLE =
12-
'../../node_modules/karma-phantomjs-launcher/node_modules/.bin/phantomjs'
12+
'../../node_modules/.bin/phantomjs'
1313
grunt.util.spawn({
1414
cmd: '../../node_modules/.bin/casperjs',
1515
args: ['test', '--concise', './' + file],

package.json

+14-13
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,22 @@
3232
"casperjs": "^1.1.0-beta3",
3333
"codecov.io": "^0.1.2",
3434
"grunt": "^0.4.5",
35-
"grunt-eslint": "^17.0.0",
36-
"grunt-karma": "^0.8.3",
35+
"grunt-eslint": "^17.1.0",
36+
"grunt-karma": "^0.12.0",
3737
"jasmine-core": "^2.3.4",
38-
"karma": "^0.12.31",
39-
"karma-chrome-launcher": "^0.1.7",
40-
"karma-commonjs": "^0.0.10",
41-
"karma-coverage": "^0.2.7",
42-
"karma-firefox-launcher": "^0.1.4",
43-
"karma-jasmine": "^0.3.5",
44-
"karma-phantomjs-launcher": "^0.1.4",
38+
"karma": "^0.13.8",
39+
"karma-chrome-launcher": "^0.2.0",
40+
"karma-commonjs": "^0.0.13",
41+
"karma-coverage": "^0.5.0",
42+
"karma-firefox-launcher": "^0.1.6",
43+
"karma-jasmine": "^0.3.6",
44+
"karma-phantomjs-launcher": "^0.2.1",
4545
"karma-safari-launcher": "^0.1.1",
46-
"karma-sauce-launcher": "^0.2.10",
47-
"semver": "^4.2.0",
46+
"karma-sauce-launcher": "^0.2.14",
47+
"phantomjs": "^1.9.17",
48+
"semver": "^5.0.1",
4849
"shell-task": "^1.0.0",
49-
"uglify-js": "^2.4.20",
50-
"webpack": "^1.9.10"
50+
"uglify-js": "^2.4.24",
51+
"webpack": "^1.11.0"
5152
}
5253
}

test/unit/specs/api/global_spec.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,8 @@ describe('Global API', function () {
6262
var Test = Vue.extend()
6363

6464
it('directive / elementDirective / filter / transition', function () {
65-
[
66-
'directive',
67-
'elementDirective',
68-
'filter',
69-
'transition'
70-
].forEach(function (type) {
65+
var assets = ['directive', 'elementDirective', 'filter', 'transition']
66+
assets.forEach(function (type) {
7167
var def = {}
7268
Test[type]('test', def)
7369
expect(Test.options[type + 's'].test).toBe(def)

0 commit comments

Comments
 (0)