-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
67 lines (58 loc) · 1.72 KB
/
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
const test = require('ava')
const postcss = require('postcss')
const plugin = require('./')
const run = (t, input, output, opts = {}) =>
postcss([plugin(opts)]).process(input)
.then((result) => {
t.deepEqual(result.css, output)
t.deepEqual(result.warnings().length, 0)
})
test('Add border types to border property', t =>
run(t,
'div { border: 1px red; }',
'div { border: 1px solid red; }'
)
)
test('Add border types to border top property', t =>
run(t,
'.class { border-top: 1px green; }',
'.class { border-top: 1px solid green; }'
)
)
test('Works with only color property', t =>
run(t,
'div { border: green; border-bottom: #423424; }',
'div { border: 1px solid green; border-bottom: 1px solid #423424; }'
)
)
test('Not edit decl of other types of border property', t =>
run(t,
'.class { border-style: solid; border-collapse: separate; }',
'.class { border-style: solid; border-collapse: separate; }'
)
)
test('Not change complete border declaration and with only size expressed', t =>
run(t,
'div { border-bottom: red dashed 10px; border: 42em; }',
'div { border-bottom: red dashed 10px; border: 42em; }'
)
)
test('Not change border with value of 0 or none', t =>
run(t,
'div { border: 0; border-top: none; }',
'div { border: 0; border-top: none; }'
)
)
test('Not change other CSS rules or border with value of 0', t =>
run(t,
'div { display: flex; width: 100%; border-radius: 5px; }',
'div { display: flex; width: 100%; border-radius: 5px; }'
)
)
test('Change border type based on opts', t =>
run(t,
'.class { border-top: 1px palevioletred; }',
'.class { border-top: 1px dashed palevioletred; }',
{ borderType: 'dashed' }
)
)