Skip to content
This repository was archived by the owner on Dec 1, 2018. It is now read-only.

Commit 85f40d5

Browse files
committed
Bump to Vue 2.0.1, TypeScript 2.0.3, Jest 16, @types/jest 16
1 parent 8de17b6 commit 85f40d5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ describe('counter-ts.vue', () => {
6363
clickNthButton(vm.$el, 2)
6464
Vue.nextTick( () => {
6565
html2jade.convertHtml(vm.$el.innerHTML, {bodyless: true}, (err: any, jade: string) => {
66-
(<any>expect(jade)).toMatchSnapshot()
66+
expect(jade).toMatchSnapshot()
6767
resolve()
6868
})
6969
})

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@
3737
]
3838
},
3939
"devDependencies": {
40-
"@types/jest": "^0.9.30",
40+
"@types/jest": "^15.1.32",
4141
"babel-core": "^6.0.0",
4242
"babel-plugin-transform-runtime": "^6.0.0",
4343
"babel-preset-es2015": "^6.0.0",
4444
"babel-runtime": "^6.0.0",
45-
"eslint": "^3.3.0",
45+
"eslint": "^3.7.0",
4646
"eslint-config-locoslab": "github:locoslab/eslint-config-locoslab",
4747
"html2jade": "^0.8.4",
48-
"jest": "^15.1.1",
48+
"jest-cli": "^16.0.1",
4949
"pug": "^2.0.0-beta5",
50-
"typescript": "^2.0.2",
51-
"vue": "^2.0.0-rc.5",
52-
"vue-template-compiler": "^2.0.0-rc.5",
50+
"typescript": "^2.0.3",
51+
"vue": "^2.0.1",
52+
"vue-template-compiler": "^2.0.1",
5353
"vue-typescript-import-dts": "^1.0.1"
5454
},
5555
"babel": {

test/test/counter-ts.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('counter-ts.vue', () => {
3333
clickNthButton(vm.$el, 2)
3434
Vue.nextTick( () => {
3535
html2jade.convertHtml(vm.$el.innerHTML, {bodyless: true}, (err: any, jade: string) => {
36-
(<any>expect(jade)).toMatchSnapshot()
36+
expect(jade).toMatchSnapshot()
3737
resolve()
3838
})
3939
})

0 commit comments

Comments
 (0)