UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

23 lines 568 B
export type TestResult = { name: string; totalPass: number; totalFail: number; status: string; results: Array<{ name: string; allTests: Array<{ [testName: string]: { status: boolean; error?: { name: string; message: string; }; }; }>; }>; }; export interface TestOutputBuffers { testZipBuffer: Buffer | undefined; buildZipBuffer: Buffer | undefined; } //# sourceMappingURL=test-response-model.d.ts.map