UNPKG

@gmangiapelo/wdio-azure-devops-service

Version:

Wdio Service to inject result of automatic test run in Azure DevOps TestPlan

15 lines (14 loc) 289 B
export interface IAzureConfig { pat: string; organizationUrl: string; projectId: string; planId: number; suiteId: number; runName: string; caseIdRegex?: string; } export interface ITestResult { testCaseId: string; result: string; message: string; }