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.
2 parents c477fb6 + 1ca7dff commit bed57b3Copy full SHA for bed57b3
test/WebpackConfig.js
@@ -375,19 +375,6 @@ describe('WebpackConfig object', () => {
375
});
376
377
378
- describe('addPlugin', () => {
379
- it('extends the current registered plugins', () => {
380
- const config = createConfig();
381
- const nbOfPlugins = config.plugins.length;
382
-
383
- expect(nbOfPlugins).to.equal(0);
384
385
- config.addPlugin(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/));
386
387
- expect(config.plugins.length).to.equal(1);
388
- });
389
390
391
describe('enableVueLoader', () => {
392
it('Call with no config', () => {
393
const config = createConfig();
0 commit comments