From 73b7f1c22c52e38f3052c1e528cffa55a83e5826 Mon Sep 17 00:00:00 2001 From: Sebastian Rindom Date: Wed, 31 Jan 2024 18:28:01 +0100 Subject: [PATCH] fix: add timeout --- .../__tests__/customer/store/create-customer-addresses.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/plugins/__tests__/customer/store/create-customer-addresses.ts b/integration-tests/plugins/__tests__/customer/store/create-customer-addresses.ts index 3b0fd1dd29ccc..f628406a4d399 100644 --- a/integration-tests/plugins/__tests__/customer/store/create-customer-addresses.ts +++ b/integration-tests/plugins/__tests__/customer/store/create-customer-addresses.ts @@ -7,6 +7,8 @@ import { getContainer } from "../../../../environment-helpers/use-container" import { initDb, useDb } from "../../../../environment-helpers/use-db" import { createAuthenticatedCustomer } from "../../../helpers/create-authenticated-customer" +jest.setTimeout(50000) + const env = { MEDUSA_FF_MEDUSA_V2: true } describe("POST /store/customers/me/addresses", () => {