UNPKG

e2ed

Version:

E2E testing framework over Playwright

13 lines (12 loc) 376 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getPrintedRetry = void 0; /** * Get printed message about one retry. * @internal */ const getPrintedRetry = (maxRetriesCount) => { const wordRetry = maxRetriesCount > 1 ? 'retries' : 'retry'; return `${maxRetriesCount} ${wordRetry}`; }; exports.getPrintedRetry = getPrintedRetry;