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
|
import { expect, test } from 'vitest'
import { parse } from 'postcss'
import extractClassNames from './extractClassNames'
test('ex: 1', async () => {
let result = await extractClassNames(parse('.foo {}'))
expect(result.classNames).toHaveProperty('foo')
expect(result.classNames['foo']).toEqual({
__info: {
__rule: true,
__source: undefined,
__pseudo: [],
__scope: null,
__context: [],
},
})
})
test('ex: 2', async () => {
let result = await extractClassNames(parse('.foo.bar {}'))
expect(result.classNames).toHaveProperty('foo')
expect(result.classNames).toHaveProperty('bar')
expect(result.classNames['foo']).toEqual({
__info: {
__source: undefined,
__pseudo: [],
__scope: null,
__context: [],
},
})
expect(result.classNames['bar']).toEqual({
__info: {
__rule: true,
__source: undefined,
__pseudo: [],
__scope: '.foo',
__context: [],
},
})
})
test('ex: 3', async () => {
let result = await extractClassNames(parse('.foo:where(.bar:is(.baz:has(> .klass))) {}'))
expect(result.classNames).toHaveProperty('foo')
expect(result.classNames).not.toHaveProperty('bar')
expect(result.classNames).not.toHaveProperty('baz')
expect(result.classNames).not.toHaveProperty('klass')
expect(result.classNames['foo']).toEqual({
__info: {
__rule: true,
__source: undefined,
__pseudo: [':where(.bar:is(.baz:has(> .klass)))'],
__scope: null,
__context: [],
},
})
})
|