-
-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathemit-option.test.js.snap.webpack4
52 lines (40 loc) · 1.46 KB
/
emit-option.test.js.snap.webpack4
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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`emit option should work when emit option is "false": assets 1`] = `
Array [
"main.js",
"react.svg",
]
`;
exports[`emit option should work when emit option is "false": errors 1`] = `Array []`;
exports[`emit option should work when emit option is "false": warnings 1`] = `Array []`;
exports[`emit option should work when emit option is "true": assets 1`] = `
Array [
"main.css",
"main.js",
"react.svg",
]
`;
exports[`emit option should work when emit option is "true": errors 1`] = `Array []`;
exports[`emit option should work when emit option is "true": warnings 1`] = `Array []`;
exports[`emit option should work with locals when emit option is "false": DOM 1`] = `
"<!DOCTYPE html><html><head>
<title>style-loader test</title>
<style id=\\"existing-style\\">.existing { color: yellow }</style>
</head>
<body>
css.foo: _1F17fUrdX_cbcyDHpFqmAD
css.bar: _3TZVxmkrZR2cTfifKhDoZn
css.baz: M-pzkE59YBii7EXzFyxE6
</body></html>"
`;
exports[`emit option should work with locals when emit option is "false": errors 1`] = `Array []`;
exports[`emit option should work with locals when emit option is "false": warnings 1`] = `Array []`;
exports[`emit option should work without emit option: assets 1`] = `
Array [
"main.bundle.js",
"main.css",
"react.svg",
]
`;
exports[`emit option should work without emit option: errors 1`] = `Array []`;
exports[`emit option should work without emit option: warnings 1`] = `Array []`;