-
-
Notifications
You must be signed in to change notification settings - Fork 608
/
Copy pathurl-option.test.js
77 lines (65 loc) · 2.52 KB
/
url-option.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
68
69
70
71
72
73
74
75
76
77
import {
compile,
getCompiler,
getErrors,
getExecutedCode,
getModuleSource,
getWarnings,
} from './helpers/index';
describe('"url" option', () => {
it('should work when not specified', async () => {
const compiler = getCompiler('./url/url.js');
const stats = await compile(compiler);
expect(getModuleSource('./url/url.css', stats)).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work with a value equal to "true"', async () => {
const compiler = getCompiler('./url/url.js', { url: true });
const stats = await compile(compiler);
expect(getModuleSource('./url/url.css', stats)).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work with a value equal to "false"', async () => {
const compiler = getCompiler('./url/url.js', { url: false });
const stats = await compile(compiler);
expect(getModuleSource('./url/url.css', stats)).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should work with a value equal to "Function"', async () => {
const compiler = getCompiler('./url/url.js', {
url: (url, resourcePath) => {
expect(typeof resourcePath === 'string').toBe(true);
// Don't handle `img.png`
if (url.includes('img.png')) {
return false;
}
return true;
},
});
const stats = await compile(compiler);
expect(getModuleSource('./url/url.css', stats)).toMatchSnapshot('module');
expect(getExecutedCode('main.bundle.js', compiler, stats)).toMatchSnapshot(
'result'
);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats)).toMatchSnapshot('errors');
});
it('should emit warning when unresolved import', async () => {
const compiler = getCompiler('./url/url-unresolved.js');
const stats = await compile(compiler);
expect(getWarnings(stats)).toMatchSnapshot('warnings');
expect(getErrors(stats, true)).toMatchSnapshot('errors');
});
});