playwright-teamcity-reporter
Version:
Playwright Teamcity Reporter
8 lines • 408 B
TypeScript
export type TestStatesType = 'testStarted' | 'testMetadata' | 'testFinished' | 'testIgnored' | 'testFailed';
export type StdType = 'testStdOut' | 'testStdErr';
export type ActionType = 'message' | 'testRetrySupport' | TestStatesType | StdType;
export interface ITeamcityReporterConfiguration {
testMetadataArtifacts?: string;
logConfig?: boolean;
}
//# sourceMappingURL=teamcity.model.d.ts.map