forked from rehypejs/rehype-minify
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
40 lines (36 loc) · 899 Bytes
/
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
import test from 'tape'
import {rehype} from 'rehype'
import {u} from 'unist-builder'
import {h} from 'hastscript'
import min from './index.js'
test('rehype-concat-css-style', (t) => {
t.deepEqual(
rehype()
.use(min)
.runSync(
u('root', [h('style', 'b {color: red}'), h('style', 'i {color: blue}')])
),
u('root', [h('style', 'b {color: red}i {color: blue}')])
)
t.deepEqual(
rehype()
.use(min)
.runSync(
u('root', [
h('style', 'b {color: red}'),
h('style', {type: 'text/foostyle'}, 'i {color: blue}')
])
),
u('root', [
h('style', 'b {color: red}'),
h('style', {type: 'text/foostyle'}, 'i {color: blue}')
])
)
t.deepEqual(
rehype()
.use(min)
.runSync(u('root', [h('style', 'b {color: red}')])),
u('root', [h('style', 'b {color: red}')])
)
t.end()
})