Skip to content

Commit 3b7b000

Browse files
committed
bump deps
1 parent e505456 commit 3b7b000

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,20 @@
5353
"babel-runtime": "^5.8.0",
5454
"casperjs": "^1.1.3",
5555
"codecov.io": "^0.1.2",
56-
"eslint": "^2.9.0",
56+
"eslint": "^3.5.0",
5757
"eslint-config-vue": "^1.0.0",
5858
"eslint-plugin-html": "^1.5.2",
59-
"istanbul-instrumenter-loader": "^0.1.3",
59+
"istanbul-instrumenter-loader": "^0.2.0",
6060
"jasmine-core": "^2.4.1",
61-
"karma": "^0.13.8",
62-
"karma-chrome-launcher": "^0.2.0",
63-
"karma-coverage": "^0.5.0",
64-
"karma-firefox-launcher": "^0.1.6",
65-
"karma-ie-launcher": "^0.2.0",
66-
"karma-jasmine": "^0.3.6",
67-
"karma-phantomjs-launcher": "^0.2.1",
68-
"karma-safari-launcher": "^0.1.1",
69-
"karma-sauce-launcher": "^0.3.0",
61+
"karma": "^1.3.0",
62+
"karma-chrome-launcher": "^2.0.0",
63+
"karma-coverage": "^1.1.1",
64+
"karma-firefox-launcher": "^1.0.0",
65+
"karma-ie-launcher": "^1.0.0",
66+
"karma-jasmine": "^1.0.2",
67+
"karma-phantomjs-launcher": "^1.0.2",
68+
"karma-safari-launcher": "^1.0.0",
69+
"karma-sauce-launcher": "^1.0.0",
7070
"karma-sourcemap-loader": "^0.3.7",
7171
"karma-webpack": "^1.7.0",
7272
"object-assign": "^4.0.1",

test/unit/specs/filters/filters_spec.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,16 @@ describe('Filters', function () {
296296

297297
function evenBeforeOdd (a, b) {
298298
if (a % 2 === 0) {
299-
if (b % 2 === 0) return a - b
300-
else return -1
301-
} else if (b % 2 === 0) return 1
302-
else return a - b
299+
if (b % 2 === 0) {
300+
return a - b
301+
} else {
302+
return -1
303+
}
304+
} else if (b % 2 === 0) {
305+
return 1
306+
} else {
307+
return a - b
308+
}
303309
}
304310

305311
function assertArray (res, expectations) {

0 commit comments

Comments
 (0)