From f626234401bfe3edf26fcb10d6209a3fb95fe14b Mon Sep 17 00:00:00 2001 From: Baylee Schmeisser Date: Thu, 11 Jan 2024 09:13:02 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20tests.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.spec.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.spec.tsx b/src/App.spec.tsx index 0b2e3d3..d4f3901 100644 --- a/src/App.spec.tsx +++ b/src/App.spec.tsx @@ -1,5 +1,5 @@ describe('App.tsx', () => { - test('Incorrect start', () => { - expect(true).toBe(false) + test('is true', () => { + expect(true).toBe(true) }) })