From ff515a3f2e513c7aaba5f97c8cff511fdb88d6d5 Mon Sep 17 00:00:00 2001 From: simojenki Date: Fri, 29 Jan 2021 13:14:32 +1100 Subject: [PATCH] Intentionally failing test to see what happens to gh actions workflow --- tests/hello-world.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hello-world.test.ts b/tests/hello-world.test.ts index c3a35d2..f5cba4d 100644 --- a/tests/hello-world.test.ts +++ b/tests/hello-world.test.ts @@ -2,6 +2,6 @@ import { expect } from "chai"; describe("something", function () { it("fails", function () { - expect(true).equal(true); + expect(false).equal(true); }); });