@estruyf/github-actions-reporter
Version:
GitHub Actions reporter for Playwright
12 lines (11 loc) • 355 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSummaryTitle = void 0;
const getSummaryTitle = (title) => {
const summaryTitle = typeof title === "undefined" ? "Test results" : title;
if (summaryTitle) {
return summaryTitle;
}
return undefined;
};
exports.getSummaryTitle = getSummaryTitle;