We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47975d commit 1ed5a26Copy full SHA for 1ed5a26
test/server/Server.test.js
@@ -82,6 +82,18 @@ describe('Server', () => {
82
compiler.run(() => {});
83
});
84
85
+ // TODO: remove this after plugin support is published
86
+ it('should create and run server with MultiCompiler with old parameters order', (done) => {
87
+ const compiler = webpack([config, config]);
88
+ const server = new Server(compiler, baseDevConfig);
89
+
90
+ compiler.hooks.done.tap('webpack-dev-server', () => {
91
+ server.close(done);
92
+ });
93
94
+ compiler.run(() => {});
95
96
97
it('add hot-only option', (done) => {
98
const compiler = webpack(config);
99
const server = createServer(
0 commit comments