From 42f8c401dc9519bc8b2d386ce9eda072144a46d0 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 13 Jan 2023 19:40:15 +0530 Subject: feat: refactors test runner --- stdlib/test.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'stdlib') diff --git a/stdlib/test.ts b/stdlib/test.ts index 49c6e0e..7497f7b 100644 --- a/stdlib/test.ts +++ b/stdlib/test.ts @@ -2,6 +2,7 @@ import { Effect } from "./effect"; export interface Config { compileTimeTestFailures: false + stopAtFailure: true // TODO: stopAtFailure } type Assertion = Config['compileTimeTestFailures'] extends true ? true : boolean -- cgit v1.3.1