@@ -111,47 +111,72 @@ exports[`validate options should throw an error on the "brokenSourceUrlReportTyp
111
111
exports [` validate options should throw an error on the "unknown" option with "/test/" value 1` ] = `
112
112
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
113
113
- options has an unknown property 'unknown'. These properties are valid:
114
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
114
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
115
115
`;
116
116
117
117
exports [` validate options should throw an error on the "unknown" option with "[]" value 1` ] = `
118
118
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
119
119
- options has an unknown property 'unknown'. These properties are valid:
120
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
120
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
121
121
`;
122
122
123
123
exports [` validate options should throw an error on the "unknown" option with "{ " foo" :" bar" } " value 1` ] = `
124
124
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
125
125
- options has an unknown property 'unknown'. These properties are valid:
126
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
126
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
127
127
`;
128
128
129
129
exports [` validate options should throw an error on the "unknown" option with "{ } " value 1` ] = `
130
130
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
131
131
- options has an unknown property 'unknown'. These properties are valid:
132
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
132
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
133
133
`;
134
134
135
135
exports [` validate options should throw an error on the "unknown" option with "1" value 1` ] = `
136
136
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
137
137
- options has an unknown property 'unknown'. These properties are valid:
138
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
138
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
139
139
`;
140
140
141
141
exports [` validate options should throw an error on the "unknown" option with "false" value 1` ] = `
142
142
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
143
143
- options has an unknown property 'unknown'. These properties are valid:
144
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
144
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
145
145
`;
146
146
147
147
exports [` validate options should throw an error on the "unknown" option with "test" value 1` ] = `
148
148
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
149
149
- options has an unknown property 'unknown'. These properties are valid:
150
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
150
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
151
151
`;
152
152
153
153
exports [` validate options should throw an error on the "unknown" option with "true" value 1` ] = `
154
154
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
155
155
- options has an unknown property 'unknown'. These properties are valid:
156
- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
156
+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
157
+ `;
158
+
159
+ exports [` validate options should throw an error on the "unresolveSourceFetcher" option with "[]" value 1` ] = `
160
+ "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
161
+ - options.unresolveSourceFetcher should be an instance of function."
162
+ ` ;
163
+
164
+ exports [` validate options should throw an error on the "unresolveSourceFetcher" option with "{ } " value 1` ] = `
165
+ "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
166
+ - options.unresolveSourceFetcher should be an instance of function."
167
+ ` ;
168
+
169
+ exports [` validate options should throw an error on the "unresolveSourceFetcher" option with "1" value 1` ] = `
170
+ "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
171
+ - options.unresolveSourceFetcher should be an instance of function."
172
+ ` ;
173
+
174
+ exports [` validate options should throw an error on the "unresolveSourceFetcher" option with "test" value 1` ] = `
175
+ "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
176
+ - options.unresolveSourceFetcher should be an instance of function."
177
+ ` ;
178
+
179
+ exports [` validate options should throw an error on the "unresolveSourceFetcher" option with "true" value 1` ] = `
180
+ "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
181
+ - options.unresolveSourceFetcher should be an instance of function."
157
182
` ;
0 commit comments