UNPKG

playwright-msteams-reporter-conditional

Version:

Microsoft Teams reporter for Playwright which allows you to send notifications about the status of your E2E tests.

16 lines (15 loc) 475 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getNotificationOutcome = void 0; const getNotificationOutcome = (statuses) => { const isSuccess = statuses.failed === 0; const hasFlakyTests = statuses.flaky > 0; if (isSuccess && !hasFlakyTests) { return "passed"; } if (isSuccess && hasFlakyTests) { return "flaky"; } return "failed"; }; exports.getNotificationOutcome = getNotificationOutcome;