Skip to content

Commit d9d530b

Browse files
committed
chore: enable github actions reporter
1 parent cbc7fae commit d9d530b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jest.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
module.exports = {
1+
/** @type {import('@jest/types').Config.InitialOptions} */
2+
const config = {
23
testMatch: ['**/tests/**/*.test.ts'],
34
transform: {
45
'^.+\\.tsx?$': 'ts-jest',
56
},
7+
reporters: ['default', 'github-actions'],
68
coverageThreshold: {
79
global: {
810
branches: 90,
@@ -12,3 +14,5 @@ module.exports = {
1214
},
1315
},
1416
};
17+
18+
module.exports = config;

0 commit comments

Comments
 (0)