@@ -22,11 +22,10 @@ const config: Config = {
22
22
setupFilesAfterEnv : [ "<rootDir>/spec/setupTests.ts" ] ,
23
23
collectCoverageFrom : [ "<rootDir>/src/**/*.{js,ts}" ] ,
24
24
coverageReporters : [ "text-summary" , "lcov" ] ,
25
- testResultsProcessor : "@casualbot/jest-sonar-reporter" ,
26
25
27
26
// Always print out a summary if there are any failing tests. Normally
28
27
// a summary is only printed if there are more than 20 test *suites*.
29
- reporters : [ [ "default" , { summaryThreshold : 0 } ] ] ,
28
+ reporters : [ [ "default" , { summaryThreshold : 0 } ] , "@casualbot/jest-sonar-reporter" ] ,
30
29
} ;
31
30
32
31
// if we're running under GHA, enable the GHA reporter
@@ -35,6 +34,7 @@ if (env["GITHUB_ACTIONS"] !== undefined) {
35
34
[ "github-actions" , { silent : false } ] ,
36
35
// as above: always show a summary if there were any failing tests.
37
36
[ "summary" , { summaryThreshold : 0 } ] ,
37
+ "@casualbot/jest-sonar-reporter" ,
38
38
] ;
39
39
40
40
// if we're running against the develop branch, also enable the slow test reporter
0 commit comments