@apistudio/apim-cli
Version:
CLI for API Management Products
26 lines (22 loc) • 522 B
text/typescript
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;
}