wdio-testmo-service
Version:
WebdriverIO service for choosing tests to run based on Priority
10 lines (9 loc) • 404 B
TypeScript
import { Options, Services } from "@wdio/types";
import type { TestmoServiceOptions, CsvRow } from "./types";
export default class TestmoService implements Services.ServiceInstance {
private _options;
constructor(_options: TestmoServiceOptions);
beforeSession(config: Options.Testrunner): Promise<void>;
loadCSV(filePath: string): Promise<CsvRow[]>;
selectCases(): Promise<string>;
}