|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP |
2 | 2 |
|
| 3 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "/test/" value 1`] = ` |
| 4 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 5 | + - options.filterSourceMappingUrl should be an instance of function." |
| 6 | +`; |
| 7 | + |
| 8 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "[]" value 1`] = ` |
| 9 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 10 | + - options.filterSourceMappingUrl should be an instance of function." |
| 11 | +`; |
| 12 | + |
| 13 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "{"foo":"bar"}" value 1`] = ` |
| 14 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 15 | + - options.filterSourceMappingUrl should be an instance of function." |
| 16 | +`; |
| 17 | + |
| 18 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "{}" value 1`] = ` |
| 19 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 20 | + - options.filterSourceMappingUrl should be an instance of function." |
| 21 | +`; |
| 22 | + |
| 23 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "1" value 1`] = ` |
| 24 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 25 | + - options.filterSourceMappingUrl should be an instance of function." |
| 26 | +`; |
| 27 | + |
| 28 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "false" value 1`] = ` |
| 29 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 30 | + - options.filterSourceMappingUrl should be an instance of function." |
| 31 | +`; |
| 32 | + |
| 33 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "test" value 1`] = ` |
| 34 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 35 | + - options.filterSourceMappingUrl should be an instance of function." |
| 36 | +`; |
| 37 | + |
| 38 | +exports[`validate options should throw an error on the "filterSourceMappingUrl" option with "true" value 1`] = ` |
| 39 | +"Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
| 40 | + - options.filterSourceMappingUrl should be an instance of function." |
| 41 | +`; |
| 42 | + |
3 | 43 | exports[`validate options should throw an error on the "unknown" option with "/test/" value 1`] = ` |
4 | 44 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
5 | 45 | - options has an unknown property 'unknown'. These properties are valid: |
6 | | - object {}" |
| 46 | + object { filterSourceMappingUrl? }" |
7 | 47 | `; |
8 | 48 |
|
9 | 49 | exports[`validate options should throw an error on the "unknown" option with "[]" value 1`] = ` |
10 | 50 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
11 | 51 | - options has an unknown property 'unknown'. These properties are valid: |
12 | | - object {}" |
| 52 | + object { filterSourceMappingUrl? }" |
13 | 53 | `; |
14 | 54 |
|
15 | 55 | exports[`validate options should throw an error on the "unknown" option with "{"foo":"bar"}" value 1`] = ` |
16 | 56 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
17 | 57 | - options has an unknown property 'unknown'. These properties are valid: |
18 | | - object {}" |
| 58 | + object { filterSourceMappingUrl? }" |
19 | 59 | `; |
20 | 60 |
|
21 | 61 | exports[`validate options should throw an error on the "unknown" option with "{}" value 1`] = ` |
22 | 62 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
23 | 63 | - options has an unknown property 'unknown'. These properties are valid: |
24 | | - object {}" |
| 64 | + object { filterSourceMappingUrl? }" |
25 | 65 | `; |
26 | 66 |
|
27 | 67 | exports[`validate options should throw an error on the "unknown" option with "1" value 1`] = ` |
28 | 68 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
29 | 69 | - options has an unknown property 'unknown'. These properties are valid: |
30 | | - object {}" |
| 70 | + object { filterSourceMappingUrl? }" |
31 | 71 | `; |
32 | 72 |
|
33 | 73 | exports[`validate options should throw an error on the "unknown" option with "false" value 1`] = ` |
34 | 74 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
35 | 75 | - options has an unknown property 'unknown'. These properties are valid: |
36 | | - object {}" |
| 76 | + object { filterSourceMappingUrl? }" |
37 | 77 | `; |
38 | 78 |
|
39 | 79 | exports[`validate options should throw an error on the "unknown" option with "test" value 1`] = ` |
40 | 80 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
41 | 81 | - options has an unknown property 'unknown'. These properties are valid: |
42 | | - object {}" |
| 82 | + object { filterSourceMappingUrl? }" |
43 | 83 | `; |
44 | 84 |
|
45 | 85 | exports[`validate options should throw an error on the "unknown" option with "true" value 1`] = ` |
46 | 86 | "Invalid options object. Source Map Loader has been initialized using an options object that does not match the API schema. |
47 | 87 | - options has an unknown property 'unknown'. These properties are valid: |
48 | | - object {}" |
| 88 | + object { filterSourceMappingUrl? }" |
49 | 89 | `; |
0 commit comments