-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathvue-dependency.spec.js
91 lines (78 loc) · 2.09 KB
/
vue-dependency.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
'use strict'
const check = createRuleChecker('vue/vue-dependency')
describe('Rule: vue-dependency', () => {
it('does not match an empty line', () => {
const warning = check('')
expect(warning).toBe(null)
})
it('does not match "^2.0.0"', () => {
const warning = check(`
"vue": "^2.0.0"
`)
expect(warning).toBe(null)
})
it('does not match "^2.0.0" with comma', () => {
const warning = check(`
"vue": "^2.0.0",
`)
expect(warning).toBe(null)
})
it('does not match "^2.0.1"', () => {
const warning = check(`
"vue": "^2.0.1"
`)
expect(warning).toBe(null)
})
it('does not match "2.0.0"', () => {
const warning = check(`
"vue": "2.0.0"
`)
expect(warning).toBe(null)
})
it('is not limited to pre 3.0 versions', () => {
const warning = check(`
"vue": "3.0.0"
`)
expect(warning).toBe(null)
})
it('is not limited to pre 3.0 versions, with comma', () => {
const warning = check(`
"vue": "3.0.0",
`)
expect(warning).toBe(null)
})
it('does not match vuex "1.0.0"', () => {
const warning = check(`
"vuex": "1.0.0"
`)
expect(warning).toBe(null)
})
it('matches "^1.0.27"', () => {
const warning = check(`
"vue": "^1.0.27"
`)
expect(warning).toBeTruthy()
expect(warning.fix).toBe('Replace "vue": "^1.0.27" with "vue": "^2.0.0", then run: npm install')
})
it('matches "^1.0.27" with comma', () => {
const warning = check(`
"vue": "^1.0.27",
`)
expect(warning).toBeTruthy()
expect(warning.fix).toBe('Replace "vue": "^1.0.27" with "vue": "^2.0.0", then run: npm install')
})
it('matches "1.0.27"', () => {
const warning = check(`
"vue": "1.0.27",
`)
expect(warning).toBeTruthy()
expect(warning.fix).toBe('Replace "vue": "1.0.27" with "vue": "^2.0.0", then run: npm install')
})
it('matches "0.12.1"', () => {
const warning = check(`
"vue": "0.12.1",
`)
expect(warning).toBeTruthy()
expect(warning.fix).toBe('Replace "vue": "0.12.1" with "vue": "^2.0.0", then run: npm install')
})
})