-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
36 lines (32 loc) · 902 Bytes
/
index.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
/* eslint-disable jest/no-focused-tests */
let postcss = require('postcss')
let plugin = require('./')
function run (input, output, opts) {
return postcss([plugin(opts)])
.process(input)
.then(result => {
expect(result.css).toEqual(output)
expect(result.warnings()).toHaveLength(0)
})
}
it('does something', () => {
return run('a{ }', 'a{ }', {})
})
it('resolves urls', () => {
return run(
"a { background: url('/assets/opo9828c.jpg') }",
"a { background: url('http://cdn.io/78d01ea36bc481d6e154c691347243e5') }",
{
baseUrl: 'http://cdn.io'
// oss: {
// accessKeyId: 'accessKeyId',
// accessKeySecret: 'accessKeySecret',
// bucket: 'xmpt-sit',
// endpoint: 'https://oss-cn-shenzhen.aliyuncs.com',
// https: true,
// delDistImg: false,
// region: 'oss-cn-shenzhen'
// }
}
)
})