Skip to content

Commit 2c14eb2

Browse files
bjohansebasclaude
andcommitted
fix(test): correct output path typo in webpack.array.warning fixture
The first compiler entry used `../../outputs/...` which escaped the test directory and wrote artifacts to the repository root, outside of the `/test/outputs` paths covered by `.gitignore` and `.prettierignore`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 92b2820 commit 2c14eb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/fixtures/webpack.array.warning.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = [
99
entry: './warning.js',
1010
output: {
1111
filename: 'bundle.js',
12-
path: path.resolve(__dirname, '../../outputs/array-warning/js1'),
12+
path: path.resolve(__dirname, '../outputs/array-warning/js1'),
1313
publicPath: '/static-one/',
1414
},
1515
plugins: [

0 commit comments

Comments
 (0)