Skip to content

Commit

Permalink
fix: resolve console error during testing #85
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed Jan 14, 2025
1 parent 7e3877a commit 2d2afac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/config/src/web-test-runner.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default {
rootDir: '../../',
files: [
'test/**/*.test.js',
'!**/node_modules/**'
Expand All @@ -8,11 +9,13 @@ export default {
extensions: ['.js', '.css']
},
coverageConfig: {
include: ['src/**/*.js'],
exclude: ['**/node_modules/**'],
threshold: {
statements: 70,
branches: 70,
functions: 70,
lines: 70
}
}
};
};

0 comments on commit 2d2afac

Please sign in to comment.