-
Notifications
You must be signed in to change notification settings - Fork 5
/
no-unsafe-token-fn-usage.test.ts
71 lines (57 loc) · 1.3 KB
/
no-unsafe-token-fn-usage.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
69
70
71
import { tester } from '../test-utils'
import rule, { RULE_NAME } from '../src/rules/no-unsafe-token-fn-usage'
const javascript = String.raw
const valids = [
{
code: javascript`
import { css } from './panda/css';
const styles = css({ bg: 'token(colors.red.300) 50%' })`,
},
{
code: javascript`
import { css } from './panda/css';
import { token } from './panda/tokens';
function App(){
return <div style={{ color: token('colors.red.50') }} />;
}`,
},
{
code: javascript`
import { Circle } from './panda/jsx';
function App(){
return <Circle _hover={{ border: 'solid 1px {colors.blue.400}' }} />;
}`,
},
]
const invalids = [
{
code: javascript`
import { token } from './panda/tokens';
import { css } from './panda/css';
const styles = css({ bg: token('colors.red.300') })`,
},
{
code: javascript`
import { token } from './panda/tokens';
import { css } from './panda/css';
function App(){
return <div className={css({ bg: 'token(colors.red.300)' })} />;
}`,
},
{
code: javascript`
import { Circle } from './panda/jsx';
function App(){
return <Circle margin='[{sizes.4}]' />;
}`,
},
]
tester.run(RULE_NAME, rule, {
valid: valids.map(({ code }) => ({
code,
})),
invalid: invalids.map(({ code }) => ({
code,
errors: 1,
})),
})