Skip to content

Commit c8c06df

Browse files
committed
test: tsignore
1 parent 02280fc commit c8c06df

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/utils/checkAuth.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ describe("checkAuth", () => {
6262
});
6363

6464
it("error when domain supplied", async () => {
65+
// @ts-expect-error Testing error case
6566
const result = await CheckAuth.checkAuth({ domain: null, clientId });
6667
expect(result).toEqual({
6768
success: false,
@@ -70,6 +71,7 @@ describe("checkAuth", () => {
7071
});
7172

7273
it("error when clientId supplied", async () => {
74+
// @ts-expect-error Testing error case
7375
const result = await CheckAuth.checkAuth({ domain, clientId: null });
7476
expect(result).toEqual({
7577
success: false,

0 commit comments

Comments
 (0)