Skip to content

Commit

Permalink
Update integration tests due to dropped node_modules/ exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Wermke committed Jan 15, 2017
1 parent 3fba416 commit 8aa3490
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/webpack/__tests__/integration.test.js
Expand Up @@ -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], {
Expand Down
1 change: 0 additions & 1 deletion packages/webpack2/__tests__/integration.test.js
Expand Up @@ -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], {
Expand Down

0 comments on commit 8aa3490

Please sign in to comment.