Skip to content

Commit

Permalink
test: tsignore
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRivers committed Jan 17, 2025
1 parent 02280fc commit c8c06df
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/utils/checkAuth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ describe("checkAuth", () => {
});

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

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

0 comments on commit c8c06df

Please sign in to comment.