e2ed
Version:
E2E testing framework over Playwright
15 lines (14 loc) • 466 B
TypeScript
import type { Brand } from './brand';
/**
* Label string for test run with additional data.
* Not internal because it's part of `TestRun` type, used in userland hooks.
*/
export type RunLabel = Brand<string, 'RunLabel'>;
/**
* Additional data parsed from `RunLabel` string.
* Not internal because runLabel is a part of `TestRun` type, used in userland hooks.
*/
export type RunLabelObject = Readonly<{
concurrency: number;
maxRetriesCount: number;
}>;