-
-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathinsert-option.test.js.snap.webpack4
55 lines (40 loc) · 1.96 KB
/
insert-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
53
54
55
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`insert option should work when insert option is function: DOM 1`] = `
"<!DOCTYPE html><html><head>
<title>style-loader test</title>
<link rel=\\"stylesheet\\" type=\\"text/css\\" href=\\"simple.css\\"><style id=\\"existing-style\\">.existing { color: yellow }</style>
<script charset=\\"utf-8\\" src=\\"simple.bundle.js\\"></script></head>
<body>
<h1>Body</h1>
<div class=\\"target\\"></div>
<iframe class=\\"iframeTarget\\"></iframe>
</body></html>"
`;
exports[`insert option should work when insert option is function: errors 1`] = `Array []`;
exports[`insert option should work when insert option is function: warnings 1`] = `Array []`;
exports[`insert option should work when insert option is string: DOM 1`] = `
"<!DOCTYPE html><html><head>
<title>style-loader test</title>
<style id=\\"existing-style\\">.existing { color: yellow }</style><link rel=\\"stylesheet\\" type=\\"text/css\\" href=\\"simple.css\\">
<script charset=\\"utf-8\\" src=\\"simple.bundle.js\\"></script></head>
<body>
<h1>Body</h1>
<div class=\\"target\\"></div>
<iframe class=\\"iframeTarget\\"></iframe>
</body></html>"
`;
exports[`insert option should work when insert option is string: errors 1`] = `Array []`;
exports[`insert option should work when insert option is string: warnings 1`] = `Array []`;
exports[`insert option should work without insert option: DOM 1`] = `
"<!DOCTYPE html><html><head>
<title>style-loader test</title>
<style id=\\"existing-style\\">.existing { color: yellow }</style>
<link rel=\\"stylesheet\\" type=\\"text/css\\" href=\\"simple.css\\"><script charset=\\"utf-8\\" src=\\"simple.bundle.js\\"></script></head>
<body>
<h1>Body</h1>
<div class=\\"target\\"></div>
<iframe class=\\"iframeTarget\\"></iframe>
</body></html>"
`;
exports[`insert option should work without insert option: errors 1`] = `Array []`;
exports[`insert option should work without insert option: warnings 1`] = `Array []`;