@@ -111,47 +111,72 @@ exports[`validate options should throw an error on the "brokenSourceUrlReportTyp
111111exports [` validate options should throw an error on the "unknown" option with "/test/" value 1` ] = `
112112"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
113113 - options has an unknown property 'unknown'. These properties are valid:
114- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
114+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
115115`;
116116
117117exports [` validate options should throw an error on the "unknown" option with "[]" value 1` ] = `
118118"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
119119 - options has an unknown property 'unknown'. These properties are valid:
120- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
120+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
121121`;
122122
123123exports [` validate options should throw an error on the "unknown" option with "{ " foo" :" bar" } " value 1` ] = `
124124"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
125125 - options has an unknown property 'unknown'. These properties are valid:
126- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
126+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
127127`;
128128
129129exports [` validate options should throw an error on the "unknown" option with "{ } " value 1` ] = `
130130"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
131131 - options has an unknown property 'unknown'. These properties are valid:
132- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
132+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
133133`;
134134
135135exports [` validate options should throw an error on the "unknown" option with "1" value 1` ] = `
136136"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
137137 - options has an unknown property 'unknown'. These properties are valid:
138- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
138+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
139139`;
140140
141141exports [` validate options should throw an error on the "unknown" option with "false" value 1` ] = `
142142"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
143143 - options has an unknown property 'unknown'. These properties are valid:
144- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
144+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
145145`;
146146
147147exports [` validate options should throw an error on the "unknown" option with "test" value 1` ] = `
148148"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
149149 - options has an unknown property 'unknown'. These properties are valid:
150- object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? }"
150+ object { brokenMapUrlReportType ? , brokenMapParseReportType ? , brokenSourceUrlReportType ? , unresolveSourceFetcher ? }"
151151`;
152152
153153exports [` validate options should throw an error on the "unknown" option with "true" value 1` ] = `
154154"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
155155 - 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."
157182` ;
0 commit comments