From 3dadcafdfc48018e2c3949623fea66e6c033aceb Mon Sep 17 00:00:00 2001 From: downiec <42552189+downiec@users.noreply.github.com> Date: Fri, 13 Sep 2024 21:21:29 -0700 Subject: [PATCH] Increased timeout again to see if all tests will now pass on github --- frontend/src/components/Cart/Items.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Cart/Items.test.tsx b/frontend/src/components/Cart/Items.test.tsx index 306075c3..46460f80 100644 --- a/frontend/src/components/Cart/Items.test.tsx +++ b/frontend/src/components/Cart/Items.test.tsx @@ -21,7 +21,7 @@ const user = userEvent.setup(); const activeSearch: ActiveSearchQuery = getSearchFromUrl('project=test1'); -jest.setTimeout(80000); +jest.setTimeout(100000); describe('test the cart items component', () => { it('renders message that the cart is empty when no items are added', async () => { @@ -31,7 +31,7 @@ describe('test the cart items component', () => { // Check empty cart text renders const emptyCart = await screen.findByText('Your cart is empty'); expect(emptyCart).toBeTruthy(); - }, 100000); + }); it('removes all items from the cart when confirming the popconfirm', async () => { customRender();