We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70fd138 commit 9125f09Copy full SHA for 9125f09
src/generate-report.ts
@@ -185,7 +185,8 @@ class GenerateCtrfReport implements Reporter {
185
const test: CtrfTest = {
186
name: testCase.title,
187
status:
188
- testResult.status === testCase.expectedStatus
+ testResult.status === testCase.expectedStatus &&
189
+ testResult.status !== 'skipped'
190
? 'passed'
191
: this.mapPlaywrightStatusToCtrf(testResult.status),
192
duration: testResult.duration,
0 commit comments