From 45e23e9072042c6b8594d062983abc2e391e9ce6 Mon Sep 17 00:00:00 2001 From: Scott Trinh Date: Tue, 14 Nov 2023 09:27:28 -0500 Subject: [PATCH] try: bump test timeout to 1 minute --- integration-tests/stable/auth.test.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/integration-tests/stable/auth.test.ts b/integration-tests/stable/auth.test.ts index e26ce505d..e6507bf94 100644 --- a/integration-tests/stable/auth.test.ts +++ b/integration-tests/stable/auth.test.ts @@ -33,8 +33,10 @@ describe("auth", () => { } | null > >(true); - }); + }, 60_000); - const clientToken = e.select(e.ext.auth.global.client_token); - tc.assert, string | null>>(true); + test("check client token query", () => { + const clientToken = e.select(e.ext.auth.global.client_token); + tc.assert, string | null>>(true); + }); });