File: validate-options.test.js.snap

package info (click to toggle)
node-postcss-loader 7.3.3%2Breally%2B7.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,872 kB
  • sloc: javascript: 3,364; makefile: 2
file content (158 lines) | stat: -rw-r--r-- 8,683 bytes parent folder | download | duplicates (2)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`validate options should throw an error on the "execute" option with "/test/" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.execute should be a boolean.
   -> Enables/Disables PostCSS parser support in 'CSS-in-JS'.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#execute"
`;

exports[`validate options should throw an error on the "execute" option with "[]" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.execute should be a boolean.
   -> Enables/Disables PostCSS parser support in 'CSS-in-JS'.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#execute"
`;

exports[`validate options should throw an error on the "execute" option with "{"foo":"bar"}" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.execute should be a boolean.
   -> Enables/Disables PostCSS parser support in 'CSS-in-JS'.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#execute"
`;

exports[`validate options should throw an error on the "execute" option with "{}" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.execute should be a boolean.
   -> Enables/Disables PostCSS parser support in 'CSS-in-JS'.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#execute"
`;

exports[`validate options should throw an error on the "execute" option with "1" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.execute should be a boolean.
   -> Enables/Disables PostCSS parser support in 'CSS-in-JS'.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#execute"
`;

exports[`validate options should throw an error on the "execute" option with "test" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.execute should be a boolean.
   -> Enables/Disables PostCSS parser support in 'CSS-in-JS'.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#execute"
`;

exports[`validate options should throw an error on the "implementation" option with "/test/" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.implementation should be one of these:
   string | function
   -> The implementation of postcss to use, instead of the locally installed version
   -> Read more at https://github.com/webpack-contrib/postcss-loader#implementation
   Details:
    * options.implementation should be a string.
    * options.implementation should be an instance of function."
`;

exports[`validate options should throw an error on the "implementation" option with "[]" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.implementation should be one of these:
   string | function
   -> The implementation of postcss to use, instead of the locally installed version
   -> Read more at https://github.com/webpack-contrib/postcss-loader#implementation
   Details:
    * options.implementation should be a string.
    * options.implementation should be an instance of function."
`;

exports[`validate options should throw an error on the "implementation" option with "{}" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.implementation should be one of these:
   string | function
   -> The implementation of postcss to use, instead of the locally installed version
   -> Read more at https://github.com/webpack-contrib/postcss-loader#implementation
   Details:
    * options.implementation should be a string.
    * options.implementation should be an instance of function."
`;

exports[`validate options should throw an error on the "implementation" option with "1" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.implementation should be one of these:
   string | function
   -> The implementation of postcss to use, instead of the locally installed version
   -> Read more at https://github.com/webpack-contrib/postcss-loader#implementation
   Details:
    * options.implementation should be a string.
    * options.implementation should be an instance of function."
`;

exports[`validate options should throw an error on the "postcssOptions" option with "{"config":[]}" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.postcssOptions should be one of these:
   object { config?, … } | function
   -> Options to pass through to \`Postcss\`.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#postcssOptions
   Details:
    * options.postcssOptions.config should be one of these:
      string | boolean
      -> Allows to specify PostCSS config path.
      -> Read more at https://github.com/webpack-contrib/postcss-loader#config
      Details:
       * options.postcssOptions.config should be a string.
         -> Allows to specify the path to the configuration file
       * options.postcssOptions.config should be a boolean.
         -> Enables/Disables autoloading config"
`;

exports[`validate options should throw an error on the "postcssOptions" option with "{"config":{}}" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.postcssOptions should be one of these:
   object { config?, … } | function
   -> Options to pass through to \`Postcss\`.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#postcssOptions
   Details:
    * options.postcssOptions.config should be one of these:
      string | boolean
      -> Allows to specify PostCSS config path.
      -> Read more at https://github.com/webpack-contrib/postcss-loader#config
      Details:
       * options.postcssOptions.config should be a string.
         -> Allows to specify the path to the configuration file
       * options.postcssOptions.config should be a boolean.
         -> Enables/Disables autoloading config"
`;

exports[`validate options should throw an error on the "sourceMap" option with "/test/" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.sourceMap should be a boolean.
   -> Enables/Disables generation of source maps.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#sourcemap"
`;

exports[`validate options should throw an error on the "sourceMap" option with "[]" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.sourceMap should be a boolean.
   -> Enables/Disables generation of source maps.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#sourcemap"
`;

exports[`validate options should throw an error on the "sourceMap" option with "{}" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.sourceMap should be a boolean.
   -> Enables/Disables generation of source maps.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#sourcemap"
`;

exports[`validate options should throw an error on the "sourceMap" option with "1" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.sourceMap should be a boolean.
   -> Enables/Disables generation of source maps.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#sourcemap"
`;

exports[`validate options should throw an error on the "sourceMap" option with "something" value 1`] = `
"Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.
 - options.sourceMap should be a boolean.
   -> Enables/Disables generation of source maps.
   -> Read more at https://github.com/webpack-contrib/postcss-loader#sourcemap"
`;