From 8207f5c26cf36c47cfe724191c019dbaff47cac5 Mon Sep 17 00:00:00 2001 From: Matt Kantor Date: Fri, 31 Jan 2025 08:34:41 -0500 Subject: [PATCH] Add an intentionally-failing test --- src/end-to-end.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/end-to-end.test.ts b/src/end-to-end.test.ts index 16c7541..871dfa6 100644 --- a/src/end-to-end.test.ts +++ b/src/end-to-end.test.ts @@ -16,6 +16,7 @@ const endToEnd = (input: string) => { } testCases(endToEnd, code => code)('end-to-end tests', [ + ['this test intentionally fails', either.makeRight('not correct')], ['""', either.makeRight('')], ['{}', either.makeRight({})], ['hi', either.makeRight('hi')],