UNPKG

wdio-testmo-service

Version:

WebdriverIO service for choosing tests to run based on Priority

15 lines (14 loc) 257 B
export interface TestmoServiceOptions { /** * Location of CSV file */ csv: string; /** * Array of Priority Short Names */ priorities: string[]; } export interface CsvRow { "Case ID": string; "Priority": string; }