UNPKG

e2ed

Version:

E2E testing framework over Playwright

10 lines (9 loc) 349 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createRunLabel = void 0; /** * Creates `RunLabel` from `RunLabelObject` (for example, `'r:1/3,c:20'`). * @internal */ const createRunLabel = ({ concurrency, maxRetriesCount }) => `r:${maxRetriesCount},c:${concurrency}`; exports.createRunLabel = createRunLabel;