-
-
Notifications
You must be signed in to change notification settings - Fork 608
/
Copy patherrors.test.js.snap
117 lines (89 loc) · 2.4 KB
/
errors.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`validation 1`] = `
"CSS Loader Invalid Options
options.url should be boolean
options.url should pass \\"instanceof\\" keyword validation
options.url should match some schema in anyOf
"
`;
exports[`validation 2`] = `
"CSS Loader Invalid Options
options.import should be boolean
options.import should pass \\"instanceof\\" keyword validation
options.import should match some schema in anyOf
"
`;
exports[`validation 3`] = `
"CSS Loader Invalid Options
options.modules should be boolean
options.modules should be equal to one of the allowed values
options.modules should match some schema in anyOf
"
`;
exports[`validation 4`] = `
"CSS Loader Invalid Options
options.modules should be boolean
options.modules should be equal to one of the allowed values
options.modules should match some schema in anyOf
"
`;
exports[`validation 5`] = `
"CSS Loader Invalid Options
options.modules should be boolean
options.modules should be equal to one of the allowed values
options.modules should match some schema in anyOf
"
`;
exports[`validation 6`] = `
"CSS Loader Invalid Options
options.localIdentName should be string
"
`;
exports[`validation 7`] = `
"CSS Loader Invalid Options
options.localIdentRegExp should be string
options.localIdentRegExp should pass \\"instanceof\\" keyword validation
options.localIdentRegExp should match some schema in anyOf
"
`;
exports[`validation 8`] = `
"CSS Loader Invalid Options
options.context should be string
"
`;
exports[`validation 9`] = `
"CSS Loader Invalid Options
options.hashPrefix should be string
"
`;
exports[`validation 10`] = `
"CSS Loader Invalid Options
options.getLocalIdent should be boolean
options.getLocalIdent should pass \\"instanceof\\" keyword validation
options.getLocalIdent should match some schema in anyOf
"
`;
exports[`validation 11`] = `
"CSS Loader Invalid Options
options.sourceMap should be boolean
"
`;
exports[`validation 12`] = `
"CSS Loader Invalid Options
options.camelCase should be boolean
options.camelCase should be equal to one of the allowed values
options.camelCase should match some schema in anyOf
"
`;
exports[`validation 13`] = `
"CSS Loader Invalid Options
options.importLoaders should be boolean
options.importLoaders should be number
options.importLoaders should match some schema in anyOf
"
`;
exports[`validation 14`] = `
"CSS Loader Invalid Options
options.exportOnlyLocals should be boolean
"
`;