From afa5319e4add02cb3d4113934b4b783d31cedcd8 Mon Sep 17 00:00:00 2001 From: Jose de la Paz Jr Date: Thu, 2 Sep 2021 09:09:33 -0400 Subject: [PATCH 1/2] feat(index.spec.ts): testing jest failure Testing jest failure --- src/index.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.spec.ts b/src/index.spec.ts index e6906e6..b20b46d 100644 --- a/src/index.spec.ts +++ b/src/index.spec.ts @@ -4,6 +4,6 @@ describe("Fullscript library", () => { it("returns a Client", () => { const client = Fullscript({ publicKey: "we", env: "us" }); - expect(client).not.toBe(null); + expect(client).toBe(null); }); }); From a4210a862aabef57981c3450c233a825bf07a378 Mon Sep 17 00:00:00 2001 From: Jose de la Paz Jr Date: Thu, 2 Sep 2021 13:28:00 -0400 Subject: [PATCH 2/2] feat(index.spec.ts): test lint error --- src/index.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.spec.ts b/src/index.spec.ts index b20b46d..5ff4781 100644 --- a/src/index.spec.ts +++ b/src/index.spec.ts @@ -4,6 +4,6 @@ describe("Fullscript library", () => { it("returns a Client", () => { const client = Fullscript({ publicKey: "we", env: "us" }); - expect(client).toBe(null); + expect(client).not.toBe(null); }); });