Skip to content

Commit f0b58dc

Browse files
authored
chore: Update wallaby conf to ignore browser code. (aws#328)
This removes the `browser` and `backend` modules from wallaby.conf.js This speeds up wallaby, but also keeps it from failing because of missing browser interfaces. A browser config should be added at some point.
1 parent 20045ca commit f0b58dc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

wallaby.conf.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ module.exports = function (wallaby) {
1414
'modules/**/fixtures.ts',
1515
'!modules/**/test/**/*.test.ts',
1616
'!modules/**/node_modules/**',
17-
'!modules/**/build/**'
17+
'!modules/**/build/**',
18+
'!modules/*-+(browser|backend)/**/*.ts'
1819
],
1920
tests: [
2021
'modules/**/test/**/*test.ts',
2122
'!modules/**/node_modules/**',
22-
'!modules/**/build/**'
23+
'!modules/**/build/**',
24+
'!modules/*-+(browser|backend)/**/*.ts'
2325
],
2426
filesWithNoCoverageCalculated: [
2527
'modules/**/src/index.ts'

0 commit comments

Comments
 (0)