diff --git a/apps/meteor/reporters/jira.ts b/apps/meteor/reporters/jira.ts index c9fee4748fe5d..f429d1347970c 100644 --- a/apps/meteor/reporters/jira.ts +++ b/apps/meteor/reporters/jira.ts @@ -55,6 +55,10 @@ class JIRAReporter implements Reporter { return; } + if (test.expectedStatus === 'failed') { + return; + } + const payload = { name: test.title, status: result.status,