This repository was archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathno-timing-in-fetch-data.test.js
94 lines (86 loc) · 2.07 KB
/
no-timing-in-fetch-data.test.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
92
93
94
/**
* @fileoverview disallow `setTimeout/setInterval` in `asyncData/fetch`
* @author Xin Du <[email protected]>
*/
'use strict'
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
const rule = require('../no-timing-in-fetch-data')
const RuleTester = require('eslint').RuleTester
const parserOptions = {
ecmaVersion: 2018,
sourceType: 'module'
}
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
const ruleTester = new RuleTester()
ruleTester.run('no-timing-in-fetch-data', rule, {
valid: [
{
filename: 'test.vue',
code: `
export default {
async asyncData() {
let foo = 'baz'
},
fetch() {
let foo = 'baz'
}
}
`,
parserOptions
}
],
invalid: [
{
filename: 'test.vue',
code: `
export default {
asyncData() {
let foo = 'bar'
setTimeout(() => {
foo = 'baz'
}, 0)
},
fetch() {
let foo = 'bar'
setInterval(() => {
foo = 'baz'
}, 0)
}
}
`,
errors: [{
message: 'Unexpected setTimeout in asyncData.',
type: 'CallExpression'
}, {
message: 'Unexpected setInterval in fetch.',
type: 'CallExpression'
}],
parserOptions
},
{
filename: 'test.vue',
code: `
export default {
asyncData() {
let timer = setInterval
},
fetch() {
let timer = setTimeout
}
}
`,
errors: [{
message: 'Unexpected setInterval in asyncData.',
type: 'VariableDeclarator'
}, {
message: 'Unexpected setTimeout in fetch.',
type: 'VariableDeclarator'
}],
parserOptions
}
]
})