File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ exports[`CLI --host :: (IPv6): stderr 1`] = `
7
7
<i > [webpack-dev-server] Content not from webpack is served from '<cwd >/public' directory"
8
8
`;
9
9
10
- exports[`CLI --host < IPv4 > : stderr 1`] = `
11
- "<i > [webpack-dev-server] Project is running at http://< network-ip-v4 >: <port >/ (IPv4 )
10
+ exports[`CLI --host ::1 (IPv6) : stderr 1`] = `
11
+ "<i > [webpack-dev-server] Project is running at http://[::1]: <port >/ (IPv6 )
12
12
<i > [webpack-dev-server] Content not from webpack is served from '<cwd >/public' directory"
13
13
`;
14
14
15
- exports[`CLI --host <IPv6 >: stderr 1`] = `
16
- "<i > [webpack-dev-server] Project is running at http://<network-ip-v4 >:<port >/ (IPv4), http://[::ffff:< network-ip-v4 >]:< port >/ (IPv6)
15
+ exports[`CLI --host <IPv4 >: stderr 1`] = `
16
+ "<i > [webpack-dev-server] Project is running at http://<network-ip-v4 >:<port >/ (IPv4)
17
17
<i > [webpack-dev-server] Content not from webpack is served from '<cwd >/public' directory"
18
18
`;
19
19
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ describe('CLI', () => {
123
123
. catch ( done ) ;
124
124
} ) ;
125
125
126
- it . skip ( '--host ::1 (IPv6)' , ( done ) => {
126
+ it ( '--host ::1 (IPv6)' , ( done ) => {
127
127
testBin ( '--host ::1' )
128
128
. then ( ( output ) => {
129
129
expect ( normalizeStderr ( output . stderr ) ) . toMatchSnapshot ( 'stderr' ) ;
@@ -173,7 +173,7 @@ describe('CLI', () => {
173
173
. catch ( done ) ;
174
174
} ) ;
175
175
176
- it ( `--host <IPv6>` , ( done ) => {
176
+ it . skip ( `--host <IPv6>` , ( done ) => {
177
177
testBin ( `--host ${ localIPv6 } ` )
178
178
. then ( ( output ) => {
179
179
expect ( normalizeStderr ( output . stderr ) ) . toMatchSnapshot ( 'stderr' ) ;
You can’t perform that action at this time.
0 commit comments