|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`magicHtml option disabled should not handle GET request to magic async html: console messages 1`] = ` |
| 4 | +Array [ |
| 5 | + "Failed to load resource: the server responded with a status of 404 (Not Found)", |
| 6 | +] |
| 7 | +`; |
| 8 | + |
| 9 | +exports[`magicHtml option disabled should not handle GET request to magic async html: response headers content-type 1`] = `"text/html; charset=utf-8"`; |
| 10 | + |
| 11 | +exports[`magicHtml option disabled should not handle GET request to magic async html: response status 1`] = `404`; |
| 12 | + |
| 13 | +exports[`magicHtml option disabled should not handle HEAD request to magic async html: console messages 1`] = ` |
| 14 | +Array [ |
| 15 | + "Failed to load resource: the server responded with a status of 404 (Not Found)", |
| 16 | +] |
| 17 | +`; |
| 18 | + |
| 19 | +exports[`magicHtml option disabled should not handle HEAD request to magic async html: response headers content-type 1`] = `"text/html; charset=utf-8"`; |
| 20 | + |
| 21 | +exports[`magicHtml option disabled should not handle HEAD request to magic async html: response status 1`] = `404`; |
| 22 | + |
| 23 | +exports[`magicHtml option enabled should handle GET request to magic async html: console messages 1`] = ` |
| 24 | +Array [ |
| 25 | + "[HMR] Waiting for update signal from WDS...", |
| 26 | + "Hey.", |
| 27 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 28 | + "[webpack-dev-server] Live Reloading enabled.", |
| 29 | +] |
| 30 | +`; |
| 31 | + |
| 32 | +exports[`magicHtml option enabled should handle GET request to magic async html: response headers content-type 1`] = `"text/html; charset=utf-8"`; |
| 33 | + |
| 34 | +exports[`magicHtml option enabled should handle GET request to magic async html: response status 1`] = `200`; |
| 35 | + |
| 36 | +exports[`magicHtml option enabled should handle HEAD request to magic async html: console messages 1`] = `Array []`; |
| 37 | + |
| 38 | +exports[`magicHtml option enabled should handle HEAD request to magic async html: response headers content-type 1`] = `"text/html; charset=utf-8"`; |
| 39 | + |
| 40 | +exports[`magicHtml option enabled should handle HEAD request to magic async html: response status 1`] = `200`; |
0 commit comments