Skip to content

Commit 1a116f4

Browse files
author
Frank Schmid
committed
Fixed unit tests
1 parent 824b759 commit 1a116f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/validate.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ describe('validate', () => {
142142
expect(module.webpackConfig.output).to.eql({
143143
libraryTarget: 'commonjs',
144144
path: `${testServicePath}/.webpack`,
145-
filename: testEntry,
145+
filename: '[name].js',
146146
});
147147
});
148148
});
@@ -161,7 +161,7 @@ describe('validate', () => {
161161
expect(module.webpackConfig.output).to.eql({
162162
libraryTarget: 'commonjs',
163163
path: `${testServicePath}/.webpack`,
164-
filename: 'last',
164+
filename: '[name].js',
165165
});
166166
});
167167
});
@@ -177,7 +177,7 @@ describe('validate', () => {
177177
expect(module.webpackConfig.output).to.eql({
178178
libraryTarget: 'commonjs',
179179
path: `${testServicePath}/.webpack`,
180-
filename: 'handler.js',
180+
filename: '[name].js',
181181
});
182182
});
183183
});

0 commit comments

Comments
 (0)