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.
1 parent 5ef3bea commit 0a6daa7Copy full SHA for 0a6daa7
test/integration/index.spec.js
@@ -10,14 +10,12 @@ describe('[INTEGRATION] index', function () {
10
this.timeout(30000);
11
var plugin;
12
13
- function createCompiler(options, happypackMode) {
+ function createCompiler(options, happyPackMode) {
14
plugin = new ForkTsCheckerWebpackPlugin(Object.assign({}, options, { silent: true }));
15
16
- var tsLoaderOptions = Object.assign({},
17
- happypackMode
18
- ? { happyPackMode: true }
19
- : { transpileOnly: true },
20
- { silent: true });
+ var tsLoaderOptions = happyPackMode
+ ? { happyPackMode: true, silent: true }
+ : { transpileOnly: true, silent: true };
21
22
return webpack({
23
context: path.resolve(__dirname, './project'),
0 commit comments