Files
hoppscotch/helpers/types/HoppTestResult.ts
2021-07-21 23:56:39 -04:00

15 lines
324 B
TypeScript

export type HoppTestExpectResult =
| { status: "pass" }
| { status: "fail" | "error"; message: string }
export type HoppTestData = {
description: string
expectResults: HoppTestExpectResult[]
tests: HoppTestData[]
}
export type HoppTestResult = {
tests: HoppTestData[]
expectResults: HoppTestExpectResult[]
}