-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.wallaby.js
More file actions
31 lines (31 loc) · 742 Bytes
/
Copy path.wallaby.js
File metadata and controls
31 lines (31 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @type {import('wallabyjs').IWallaby} */
export default {
// @ts-expect-error missing type
autoDetect: ['node:test'],
env: {
params: {
env: 'DEBUG=modestbench*',
},
runner: 'node',
type: 'node',
},
files: [
'src/**/*.ts',
'test/**/*.ts',
'!test/**/*.test.ts',
'package.json',
'!**/*.cts',
{ instrument: false, pattern: 'test/**/fixture/**' },
{ instrument: false, pattern: 'test/**/*.test.ts.snapshot' },
{ instrument: false, pattern: 'dist/**/*.js' },
],
filesWithNoCoverageCalculated: ['.tmp/**/*.test.ts'],
preloadModules: ['tsx/esm'],
runMode: 'onsave',
tests: [
'.tmp/**/*.test.ts',
'test/**/*.test.ts',
'!node_modules/**',
'!dist/**',
],
};