1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 04:30:31 +09:00

chore: fix test

This commit is contained in:
uetchy 2020-02-06 14:22:35 +09:00
parent c30e592ad1
commit 1ac74abff0

View File

@ -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();
});