-
-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathruntime-option.test.js.snap
55 lines (40 loc) · 1.97 KB
/
runtime-option.test.js.snap
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[`noRuntime option should work when the 'runtime' option is 'false': DOM 1`] = `
"<!DOCTYPE html><html><head>
<title>style-loader test</title>
<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[`noRuntime option should work when the 'runtime' option is 'false': errors 1`] = `Array []`;
exports[`noRuntime option should work when the 'runtime' option is 'false': warnings 1`] = `Array []`;
exports[`noRuntime option should work when the 'runtime' option is 'true': 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[`noRuntime option should work when the 'runtime' option is 'true': errors 1`] = `Array []`;
exports[`noRuntime option should work when the 'runtime' option is 'true': warnings 1`] = `Array []`;
exports[`noRuntime option should work without the 'runtime' 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[`noRuntime option should work without the 'runtime' option: errors 1`] = `Array []`;
exports[`noRuntime option should work without the 'runtime' option: warnings 1`] = `Array []`;