fix tests: remove .only

This commit is contained in:
dswbx
2025-11-05 08:20:36 +01:00
parent 80903d4ffa
commit e9f1241ec3
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();
});