-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtest-option.test.js.snap
More file actions
45 lines (34 loc) · 1.47 KB
/
test-option.test.js.snap
File metadata and controls
45 lines (34 loc) · 1.47 KB
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
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`when applied with "test" option matches snapshot for a single "test" value (RegExp): assets 1`] = `
{
"bar1.css": "body{color:red;font-size:20px}a{color:blue}",
"bar2.css": "h1{color:green}h2{color:#ff0}",
"foo.css": "a {
text-align: center;
}
",
}
`;
exports[`when applied with "test" option matches snapshot for a single "test" value (RegExp): errors 1`] = `[]`;
exports[`when applied with "test" option matches snapshot for a single "test" value (RegExp): warnings 1`] = `[]`;
exports[`when applied with "test" option matches snapshot for multiple "test" value (RegExp): assets 1`] = `
{
"bar1.css": "body{color:red;font-size:20px}a{color:blue}",
"bar2.css": "h1{color:green}h2{color:#ff0}",
"foo.css": "a {
text-align: center;
}
",
}
`;
exports[`when applied with "test" option matches snapshot for multiple "test" value (RegExp): errors 1`] = `[]`;
exports[`when applied with "test" option matches snapshot for multiple "test" value (RegExp): warnings 1`] = `[]`;
exports[`when applied with "test" option matches snapshot with empty value: assets 1`] = `
{
"bar1.css": "body{color:red;font-size:20px}a{color:blue}",
"bar2.css": "h1{color:green}h2{color:#ff0}",
"foo.css": "a{text-align:center}",
}
`;
exports[`when applied with "test" option matches snapshot with empty value: errors 1`] = `[]`;
exports[`when applied with "test" option matches snapshot with empty value: warnings 1`] = `[]`;