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 90a9ca0 commit d14b1e4Copy full SHA for d14b1e4
1 file changed
test/merge/config/merge-config.test.js
@@ -17,7 +17,7 @@ describe('merge flag configuration', () => {
17
});
18
it('merges two configurations together with flag alias', (done) => {
19
const { stdout } = run(__dirname, ['--config', './1.js', '-m', './2.js'], false);
20
- expect(stdout).toContain('option has not been set, webpack will fallback to');
+ expect(stdout).toContain('merged.js');
21
stat(resolve(__dirname, './dist/merged.js'), (err, stats) => {
22
expect(err).toBe(null);
23
expect(stats.isFile()).toBe(true);
0 commit comments