fix: broken test results
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user