This repository has been archived by the owner on Sep 26, 2021. It is now read-only.
Add better error/failure handling with proper error messages on failed expectations or expectations having new format.
The Expectation Result is defined as
type ExpectResult =
| { status: "pass" }
| { status: "fail" | "error", message: string }