We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a7f21 commit c1db2a6Copy full SHA for c1db2a6
test/browser-specific/fixtures/webpack/webpack.config.js
@@ -1,9 +1,18 @@
1
'use strict';
2
3
const FailOnErrorsPlugin = require('fail-on-errors-webpack-plugin');
4
+const {tmpdir} = require('os');
5
+const {join} = require('path');
6
+
7
+const outputPath = join(tmpdir(), 'mocha-test-webpack');
8
9
+console.error('output dir: %s', outputPath);
10
11
module.exports = {
12
entry: require.resolve('./webpack.fixture.mjs'),
13
+ output: {
14
+ path: outputPath
15
+ },
16
plugins: [
17
new FailOnErrorsPlugin({
18
failOnErrors: true,
0 commit comments