Skip to content

Commit

Permalink
try: bump test timeout to 1 minute
Browse files Browse the repository at this point in the history
  • Loading branch information
scotttrinh committed Nov 14, 2023
1 parent 52f16c2 commit 45e23e9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions integration-tests/stable/auth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ describe("auth", () => {
} | null
>
>(true);
});
}, 60_000);

const clientToken = e.select(e.ext.auth.global.client_token);
tc.assert<tc.IsExact<$infer<typeof clientToken>, string | null>>(true);
test("check client token query", () => {
const clientToken = e.select(e.ext.auth.global.client_token);
tc.assert<tc.IsExact<$infer<typeof clientToken>, string | null>>(true);
});
});

0 comments on commit 45e23e9

Please sign in to comment.