fix ".only" tests

This commit is contained in:
dswbx
2025-10-31 17:44:37 +01:00
parent 2dbafebcea
commit 71a17696eb
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import { resendEmail } from "./resend";
const ALL_TESTS = !!process.env.ALL_TESTS;
describe.skipIf(ALL_TESTS)("resend", () => {
it.only("should throw on failed", async () => {
it("should throw on failed", async () => {
const driver = resendEmail({ apiKey: "invalid" } as any);
expect(driver.send("foo@bar.com", "Test", "Test")).rejects.toThrow();
});