Skip to content

Commit 388cac3

Browse files
authored
small change to get all failed tests (#525)
1 parent 298f5a7 commit 388cac3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e-report/app/page.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ export default function Home() {
77
const { results, passed, failed, total, passRate, skipped, testDate, nextVersion } = testData
88
const skippedTests = []
99
results.forEach((suite) => {
10-
if (suite.skipped) {
10+
if (suite.skipped === true) {
1111
skippedTests.push(suite)
1212
}
1313

1414
const { testCases } = suite
1515
testCases?.forEach((testCase) => {
16-
if (testCase.link) {
16+
if (testCase.status === 'failed') {
1717
skippedTests.push(testCase)
1818
}
1919
})

0 commit comments

Comments
 (0)