Skip to content

Commit 2d50650

Browse files
committed
chore(wallaby): update wallaby
1 parent 3e04bf8 commit 2d50650

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.wallaby.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
autoDetect: ['node:test'],
55
env: {
66
params: {
7-
env: 'DEBUG=modestbench*;WALLABY=1',
7+
env: 'DEBUG=modestbench*',
88
},
99
runner: 'node',
1010
type: 'node',
@@ -15,9 +15,10 @@ export default {
1515
'!test/**/*.test.ts',
1616
'package.json',
1717
'!**/*.cts',
18-
{ instrument: false, pattern: 'test/fixture/**' },
19-
'!src/node_modules/modestbench/**',
18+
{ instrument: false, pattern: 'test/**/fixture/**' },
2019
{ instrument: false, pattern: 'test/**/*.test.ts.snapshot' },
20+
// uncomment the following line for integration tests
21+
// { instrument: false, pattern: 'dist/**/*.js' },
2122
],
2223
filesWithNoCoverageCalculated: ['.tmp/**/*.test.ts'],
2324
preloadModules: ['tsx/esm'],
@@ -27,7 +28,8 @@ export default {
2728
'test/**/*.test.ts',
2829
'!node_modules/**',
2930
'!dist/**',
30-
// tshy-ism
31-
'!src/node_modules/modestbench/**',
31+
// uncomment the following line to attempt to run integration tests
32+
// which typically launch child processes
33+
// '!test/integration/**/*.test.ts',
3234
],
3335
};

0 commit comments

Comments
 (0)