-
Notifications
You must be signed in to change notification settings - Fork 5
/
prefer-shorthand-properties.test.ts
68 lines (54 loc) · 1.11 KB
/
prefer-shorthand-properties.test.ts
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
import { tester } from '../test-utils'
import rule, { RULE_NAME } from '../src/rules/prefer-shorthand-properties'
const javascript = String.raw
const valids = [
{
code: javascript`
import { css } from './panda/css';
const styles = css({ ml: '4' })`,
},
{
code: javascript`
import { css } from './panda/css';
function App(){
return <div className={css({ bg: 'red.100' })} />;
}`,
},
{
code: javascript`
import { Circle } from './panda/jsx';
function App(){
return <Circle _hover={{ pos: 'absolute' }} />;
}`,
},
]
const invalids = [
{
code: javascript`
import { css } from './panda/css';
const styles = css({ marginLeft: '4' })`,
},
{
code: javascript`
import { css } from './panda/css';
function App(){
return <div className={css({ background: 'red.100' })} />;
}`,
},
{
code: javascript`
import { Circle } from './panda/jsx';
function App(){
return <Circle _hover={{ position: 'absolute' }} />;
}`,
},
]
tester.run(RULE_NAME, rule, {
valid: valids.map(({ code }) => ({
code,
})),
invalid: invalids.map(({ code }) => ({
code,
errors: 1,
})),
})