UNPKG

e2ed

Version:

E2E testing framework over Playwright

11 lines (10 loc) 217 B
/** * Result of isTestSkipped hook (flag isSkipped and skipping reason). */ export type IsTestSkippedResult = Readonly<{ isSkipped: false; reason?: string; } | { isSkipped: true; reason: string; }>;