|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
|
2 | 2 |
|
3 |
| -exports[`Multi compiler should work with multiple compilers: console messages 1`] = ` |
| 3 | +exports[`multi compiler should work with one web target configuration: console messages 1`] = ` |
4 | 4 | Array [
|
5 | 5 | "[HMR] Waiting for update signal from WDS...",
|
6 | 6 | "Hey.",
|
|
9 | 9 | ]
|
10 | 10 | `;
|
11 | 11 |
|
12 |
| -exports[`Multi compiler should work with multiple compilers: page errors 1`] = `Array []`; |
| 12 | +exports[`multi compiler should work with one web target configuration: page errors 1`] = `Array []`; |
| 13 | + |
| 14 | +exports[`multi compiler should work with two web target configurations with hot and live reload: console messages 1`] = ` |
| 15 | +Array [ |
| 16 | + "[HMR] Waiting for update signal from WDS...", |
| 17 | + "one", |
| 18 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 19 | + "[webpack-dev-server] Live Reloading enabled.", |
| 20 | +] |
| 21 | +`; |
| 22 | + |
| 23 | +exports[`multi compiler should work with two web target configurations with hot and live reload: console messages 2`] = ` |
| 24 | +Array [ |
| 25 | + "[HMR] Waiting for update signal from WDS...", |
| 26 | + "two", |
| 27 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 28 | + "[webpack-dev-server] Live Reloading enabled.", |
| 29 | +] |
| 30 | +`; |
| 31 | + |
| 32 | +exports[`multi compiler should work with two web target configurations with hot and live reload: page errors 1`] = `Array []`; |
| 33 | + |
| 34 | +exports[`multi compiler should work with two web target configurations with hot and live reload: page errors 2`] = `Array []`; |
| 35 | + |
| 36 | +exports[`multi compiler should work with two web target configurations with only hot reload: console messages 1`] = ` |
| 37 | +Array [ |
| 38 | + "[HMR] Waiting for update signal from WDS...", |
| 39 | + "one", |
| 40 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 41 | +] |
| 42 | +`; |
| 43 | + |
| 44 | +exports[`multi compiler should work with two web target configurations with only hot reload: console messages 2`] = ` |
| 45 | +Array [ |
| 46 | + "[HMR] Waiting for update signal from WDS...", |
| 47 | + "two", |
| 48 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 49 | +] |
| 50 | +`; |
| 51 | + |
| 52 | +exports[`multi compiler should work with two web target configurations with only hot reload: page errors 1`] = `Array []`; |
| 53 | + |
| 54 | +exports[`multi compiler should work with two web target configurations with only hot reload: page errors 2`] = `Array []`; |
| 55 | + |
| 56 | +exports[`multi compiler should work with two web target configurations with only live reload: console messages 1`] = ` |
| 57 | +Array [ |
| 58 | + "one", |
| 59 | + "[webpack-dev-server] Live Reloading enabled.", |
| 60 | +] |
| 61 | +`; |
| 62 | + |
| 63 | +exports[`multi compiler should work with two web target configurations with only live reload: console messages 2`] = ` |
| 64 | +Array [ |
| 65 | + "two", |
| 66 | + "[webpack-dev-server] Live Reloading enabled.", |
| 67 | +] |
| 68 | +`; |
| 69 | + |
| 70 | +exports[`multi compiler should work with two web target configurations with only live reload: page errors 1`] = `Array []`; |
| 71 | + |
| 72 | +exports[`multi compiler should work with two web target configurations with only live reload: page errors 2`] = `Array []`; |
| 73 | + |
| 74 | +exports[`multi compiler should work with universal configurations with hot and live reload: console messages 1`] = ` |
| 75 | +Array [ |
| 76 | + "[HMR] Waiting for update signal from WDS...", |
| 77 | + "Hello from the browser", |
| 78 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 79 | + "[webpack-dev-server] Live Reloading enabled.", |
| 80 | +] |
| 81 | +`; |
| 82 | + |
| 83 | +exports[`multi compiler should work with universal configurations with hot and live reload: page errors 1`] = `Array []`; |
| 84 | + |
| 85 | +exports[`multi compiler should work with universal configurations with only hot reload: console messages 1`] = ` |
| 86 | +Array [ |
| 87 | + "[HMR] Waiting for update signal from WDS...", |
| 88 | + "Hello from the browser", |
| 89 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 90 | +] |
| 91 | +`; |
| 92 | + |
| 93 | +exports[`multi compiler should work with universal configurations with only hot reload: page errors 1`] = `Array []`; |
| 94 | + |
| 95 | +exports[`multi compiler should work with universal configurations with only live reload: console messages 1`] = ` |
| 96 | +Array [ |
| 97 | + "Hello from the browser", |
| 98 | + "[webpack-dev-server] Live Reloading enabled.", |
| 99 | +] |
| 100 | +`; |
| 101 | + |
| 102 | +exports[`multi compiler should work with universal configurations with only live reload: page errors 1`] = `Array []`; |
0 commit comments