Skip to content

Commit

Permalink
fixes #20 - include skipped Postman assertion step write individual t…
Browse files Browse the repository at this point in the history
…est status
  • Loading branch information
beyond-danube committed Dec 4, 2024
1 parent a0f491f commit 38d8694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generate-report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class GenerateCtrfReport {
status:
assertion.error != null
? ('failed' as CtrfTestState)
: ('passed' as CtrfTestState),
: assertion.skipped ? ('skipped' as CtrfTestState) : ('passed' as CtrfTestState),

Check failure on line 164 in src/generate-report.ts

View workflow job for this annotation

GitHub Actions / build

Replace `·?·('skipped'·as·CtrfTestState)` with `⏎····················?·('skipped'·as·CtrfTestState)⏎···················`
duration: execution.response.responseTime,
}

Expand Down

0 comments on commit 38d8694

Please sign in to comment.