style: biome format fixes for test specs
Some checks failed
Deploy / Deploy to Production (push) Has been cancelled

This commit is contained in:
Semih
2026-05-11 00:20:25 +00:00
parent f8fabc6f68
commit 28c680a420
2 changed files with 1 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ describe("VinValidationPipe", () => {
it("should throw BadRequestException for VIN shorter than 17 characters", () => {
expect(() => pipe.transform("WBA123")).toThrow(BadRequestException);
expect(() => pipe.transform("WBA123")).toThrow(
"Geçersiz şase numarası. 17 karakter olmalı, I, O, Q harfleri kullanılamaz."
"Geçersiz şase numarası. 17 karakter olmalı, I, O, Q harfleri kullanılamaz.",
);
});

View File

@@ -130,7 +130,6 @@ describe("ReferralsService", () => {
expect(result.totalReferrals).toBe(2);
expect(result.referrals).toHaveLength(2);
});
});
describe("applyReferralCode", () => {