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
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`"name" option should work for CDN support query params: errors 1`] = `Array []`;
exports[`"name" option should work for CDN support query params: result 1`] = `"https://cdn.example.com/nested/file.png?foo=bar"`;
exports[`"name" option should work for CDN support query params: warnings 1`] = `Array []`;
exports[`"name" option should work with "Function" value: errors 1`] = `Array []`;
exports[`"name" option should work with "Function" value: result 1`] = `"39f5c21c1aee6ff21844c6e1d8251d97.function.png?foo=bar"`;
exports[`"name" option should work with "Function" value: warnings 1`] = `Array []`;
exports[`"name" option should work with "String" value: errors 1`] = `Array []`;
exports[`"name" option should work with "String" value: result 1`] = `"39f5c21c1aee6ff21844c6e1d8251d97.string.png?foo=bar"`;
exports[`"name" option should work with "String" value: warnings 1`] = `Array []`;
exports[`"name" option should work without value: errors 1`] = `Array []`;
exports[`"name" option should work without value: result 1`] = `"39f5c21c1aee6ff21844c6e1d8251d97.png"`;
exports[`"name" option should work without value: warnings 1`] = `Array []`;
|