From 8aa349076bf3b6b7b9ff9fd558834c824f05689a Mon Sep 17 00:00:00 2001 From: Andy Wermke Date: Sun, 15 Jan 2017 19:47:26 +0100 Subject: [PATCH] Update integration tests due to dropped `node_modules/` exclusion --- packages/webpack/__tests__/integration.test.js | 1 - packages/webpack2/__tests__/integration.test.js | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/webpack/__tests__/integration.test.js b/packages/webpack/__tests__/integration.test.js index 166edc29..b85c6d27 100644 --- a/packages/webpack/__tests__/integration.test.js +++ b/packages/webpack/__tests__/integration.test.js @@ -25,7 +25,6 @@ test('complete webpack config creation', (t) => { t.is(webpackConfig.module.loaders.length, 8) t.deepEqual(webpackConfig.module.loaders[0], { test: /\.css$/, - exclude: [ /\/node_modules\// ], loaders: [ 'style-loader', 'css-loader?importLoaders=1&localIdentName=[name]--[local]--[hash:base64:5]&modules' ] }) t.deepEqual(webpackConfig.module.loaders[1], { diff --git a/packages/webpack2/__tests__/integration.test.js b/packages/webpack2/__tests__/integration.test.js index 3495d42c..d7ec3b65 100644 --- a/packages/webpack2/__tests__/integration.test.js +++ b/packages/webpack2/__tests__/integration.test.js @@ -25,7 +25,6 @@ test('complete webpack config creation', (t) => { t.is(webpackConfig.module.loaders.length, 7) t.deepEqual(webpackConfig.module.loaders[0], { test: /\.css$/, - exclude: [ /\/node_modules\// ], loaders: [ 'style-loader', 'css-loader?importLoaders=1&localIdentName=[name]--[local]--[hash:base64:5]&modules' ] }) t.deepEqual(webpackConfig.module.loaders[1], {