From 1ac74abff01cf120a1373b7f5910561b43d980ef Mon Sep 17 00:00:00 2001 From: Yasuaki Uechi <y@uechi.io> Date: Thu, 6 Feb 2020 14:22:35 +0900 Subject: [PATCH] chore: fix test --- web/src/App.test.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/App.test.tsx b/web/src/App.test.tsx index b30c444..366a5db 100644 --- a/web/src/App.test.tsx +++ b/web/src/App.test.tsx @@ -11,6 +11,8 @@ it('renders welcome message', async () => { </Router> </Suspense>, ); - const text = await waitForElement(() => getByText('name new project')); + const text = await waitForElement(() => + getByText('Grab a slick name for your new app'), + ); expect(text).toBeTruthy(); });