-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathvalidate-options.test.js.snap
26 lines (21 loc) · 1.45 KB
/
validate-options.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
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`validate options should throw an error on the "fetchReader" option with "[]" value 1`] = `
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
- options.fetchReader should be an instance of function."
`;
exports[`validate options should throw an error on the "fetchReader" option with "{}" value 1`] = `
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
- options.fetchReader should be an instance of function."
`;
exports[`validate options should throw an error on the "fetchReader" option with "1" value 1`] = `
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
- options.fetchReader should be an instance of function."
`;
exports[`validate options should throw an error on the "fetchReader" option with "test" value 1`] = `
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
- options.fetchReader should be an instance of function."
`;
exports[`validate options should throw an error on the "fetchReader" option with "true" value 1`] = `
"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema.
- options.fetchReader should be an instance of function."
`;