Skip to content

Commit 2de6630

Browse files
Discovery on html reporter
1 parent 1cb3d64 commit 2de6630

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const config: Config.InitialOptions = {
88
reporters: [
99
"default",
1010
[
11-
"jest-junit",
12-
{ outputDirectory: "./test-results", outputName: "test-results.xml" },
11+
"jest-html-reporter",
12+
{ outputDirectory: "./test-results", outputName: "test-results.html" },
1313
],
1414
],
1515
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"test:all_characters": "jest --group=all_characters",
1414
"test:multiple_characters": "jest --group=multiple_characters",
1515
"test:filter_characters": "jest --group=filter_characters",
16-
"test:sanity": "jest --ci --reporters=default --reporters=jest-junit --group=sanity_tests"
16+
"test:sanity": "jest --ci --reporters=default --reporters=jest-html-reporter --group=sanity_tests"
1717
},
1818
"devDependencies": {
1919
"@types/jest": "^29.5.12",

0 commit comments

Comments
 (0)