From 2438e92fd5a3ee818fdfe021fb9fbb6cc492429e Mon Sep 17 00:00:00 2001 From: Masato Ikeda Date: Thu, 18 Feb 2021 15:12:22 +0900 Subject: [PATCH 1/2] Add test to demo failure --- __tests__/demo.test.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 __tests__/demo.test.ts diff --git a/__tests__/demo.test.ts b/__tests__/demo.test.ts new file mode 100644 index 0000000..5f2f24d --- /dev/null +++ b/__tests__/demo.test.ts @@ -0,0 +1,3 @@ +test('Demo failure', () => { + expect(1).toBe(2) +}) From 47e32cf051f89cf5dc6d44ebf76f7a9456d02b1e Mon Sep 17 00:00:00 2001 From: Masato Ikeda Date: Wed, 24 Mar 2021 16:55:35 +0900 Subject: [PATCH 2/2] Fix test --- __tests__/demo.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/demo.test.ts b/__tests__/demo.test.ts index 5f2f24d..1eff8aa 100644 --- a/__tests__/demo.test.ts +++ b/__tests__/demo.test.ts @@ -1,3 +1,3 @@ test('Demo failure', () => { - expect(1).toBe(2) + expect(1).toBe(1) })