Skip to content

Commit bfa61a5

Browse files
committed
test: update module importing
1 parent d771aef commit bfa61a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
const path = require('path');
22
const webpack = require('webpack');
3-
const webpackMerge = require('webpack-merge');
3+
const { merge } = require('webpack-merge');
44
const VueLoaderPlugin = require('vue-loader/lib/plugin');
55
const MemoryFS = require('memory-fs');
66
const { expect } = require('chai');
77

88
const mfs = new MemoryFS();
99

1010
function bundle(options, callback, loaderOptions = {}) {
11-
const config = webpackMerge({
11+
const config = merge({
1212
mode: 'none',
1313
output: {
1414
path: path.resolve(__dirname, './expected'),

0 commit comments

Comments
 (0)