-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathDevServer.test.js
143 lines (129 loc) · 4.19 KB
/
DevServer.test.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
'use strict';
const { testBin, normalizeStderr } = require('../helpers/test-bin');
const isWebpack5 = require('../helpers/isWebpack5');
describe('DevServer', () => {
const webpack5Test = isWebpack5 ? it : it.skip;
it('should add devServer entry points to a single entry point', (done) => {
testBin(null, './test/fixtures/dev-server/default-config.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('client/index.js?');
done();
})
.catch(done);
});
webpack5Test(
'should add devServer entry points to a multi entry point object',
(done) => {
testBin('--stats=verbose', './test/fixtures/dev-server/multi-entry.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('client/index.js?');
expect(output.stdout).toContain('foo.js');
done();
})
.catch(done);
}
);
webpack5Test(
'should add devServer entry points to an empty entry object',
(done) => {
testBin(null, './test/fixtures/dev-server/empty-entry.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('client/index.js?');
done();
})
.catch(done);
}
);
webpack5Test('should supports entry as descriptor', (done) => {
testBin(
'--stats detailed',
'./test/fixtures/entry-as-descriptor/webpack.config'
)
.then((output) => {
expect(output.exitCode).toEqual(0);
// TODO need to fix
// expect(output.stdout).toContain('foo.js');
done();
})
.catch(done);
});
it('should only prepends devServer entry points to "web" target', (done) => {
testBin('--target web', './test/fixtures/dev-server/default-config.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('client/index.js?');
expect(output.stdout).toContain('foo.js');
done();
})
.catch(done);
});
it('should not prepend devServer entry points to "node" target', (done) => {
testBin('--target node', './test/fixtures/dev-server/default-config.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).not.toContain('client/index.js?');
expect(output.stdout).toContain('foo.js');
done();
})
.catch(done);
});
it('should prepends the hot runtime to "node" target as well', (done) => {
testBin(
'--target node --hot',
'./test/fixtures/dev-server/default-config.js'
)
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('webpack/hot/dev-server');
done();
})
.catch(done);
});
it('should "/ws" web socket path by default', (done) => {
testBin(null, './test/fixtures/dev-server/client-default-path-config.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('&path=/ws');
done();
})
.catch(done);
});
it('should use client.path when custom', (done) => {
testBin(null, './test/fixtures/dev-server/client-custom-path-config.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('&path=/custom/path');
done();
})
.catch(done);
});
webpack5Test(
'should prepend devServer entry points depending on targetProperties',
(done) => {
testBin(null, './test/fixtures/dev-server/target-config.js')
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(output.stdout).toContain('client/index.js');
done();
})
.catch(done);
}
);
it('should show a warning for live reloading with non-web target', (done) => {
testBin(
'--target node --live-reload',
'./test/fixtures/dev-server/default-config.js'
)
.then((output) => {
expect(output.exitCode).toEqual(0);
expect(
normalizeStderr(output.stderr, { ipv6: true })
).toMatchSnapshot();
done();
})
.catch(done);
});
});