fix: broken test results

This commit is contained in:
liyasthomas
2021-08-27 12:38:03 +05:30
parent e9043e6762
commit a3551c6719
5 changed files with 72 additions and 26 deletions

View File

@@ -1,6 +1,7 @@
export type HoppTestExpectResult =
| { status: "pass" }
| { status: "fail" | "error"; message: string }
export type HoppTestExpectResult = {
status: "fail" | "pass" | "error"
message: string
}
export type HoppTestData = {
description: string