|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP |
2 | 2 |
|
3 | | -exports[`errors validation errors 1`] = ` |
| 3 | +exports[`validation errors 1`] = ` |
4 | 4 | "File Loader Invalid Options |
5 | 5 |
|
6 | | -options.useRelativePath should be boolean |
| 6 | +options should NOT have additional properties |
| 7 | +" |
| 8 | +`; |
| 9 | + |
| 10 | +exports[`validation errors 2`] = ` |
| 11 | +"File Loader Invalid Options |
| 12 | +
|
| 13 | +options.name should be string |
| 14 | +options.name should pass \\"instanceof\\" keyword validation |
| 15 | +options.name should match some schema in anyOf |
| 16 | +" |
| 17 | +`; |
| 18 | + |
| 19 | +exports[`validation errors 3`] = ` |
| 20 | +"File Loader Invalid Options |
| 21 | +
|
| 22 | +options.outputPath should be string |
| 23 | +options.outputPath should pass \\"instanceof\\" keyword validation |
| 24 | +options.outputPath should match some schema in anyOf |
| 25 | +" |
| 26 | +`; |
| 27 | + |
| 28 | +exports[`validation errors 4`] = ` |
| 29 | +"File Loader Invalid Options |
| 30 | +
|
| 31 | +options.publicPath should be string |
| 32 | +options.publicPath should pass \\"instanceof\\" keyword validation |
| 33 | +options.publicPath should match some schema in anyOf |
| 34 | +" |
| 35 | +`; |
| 36 | + |
| 37 | +exports[`validation errors 5`] = ` |
| 38 | +"File Loader Invalid Options |
| 39 | +
|
| 40 | +options.context should be string |
| 41 | +" |
| 42 | +`; |
| 43 | + |
| 44 | +exports[`validation errors 6`] = ` |
| 45 | +"File Loader Invalid Options |
| 46 | +
|
| 47 | +options.emitFile should be boolean |
| 48 | +" |
| 49 | +`; |
| 50 | + |
| 51 | +exports[`validation errors 7`] = ` |
| 52 | +"File Loader Invalid Options |
| 53 | +
|
| 54 | +options.regExp should be string |
| 55 | +options.regExp should pass \\"instanceof\\" keyword validation |
| 56 | +options.regExp should match some schema in anyOf |
7 | 57 | " |
8 | 58 | `; |
0 commit comments