Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jpraissman committed Nov 3, 2024
1 parent 39fe413 commit 2595d91
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/api/auth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ describe("auth", () => {
email: "damian@gmail.com",
},
});
} catch (ignored) {}
} catch (error) {
console.log(error);
}
};

const cleanupEmailVerificationCode = async () => {
Expand All @@ -84,7 +86,9 @@ describe("auth", () => {
email: "damian@gmail.com",
},
});
} catch (ignored) {}
} catch (error) {
console.log(error);
}
};

beforeAll(async () => {
Expand Down

0 comments on commit 2595d91

Please sign in to comment.