diff --git a/src/schemas/flyer.schemas.test.ts b/src/schemas/flyer.schemas.test.ts index b8d20c55..68871b1d 100644 --- a/src/schemas/flyer.schemas.test.ts +++ b/src/schemas/flyer.schemas.test.ts @@ -146,7 +146,6 @@ describe('flyerDbInsertSchema', () => { }); it('should fail if store_id is missing', () => { - // @ts-expect-error Testing runtime validation const { store_id, ...invalid } = validDbFlyer; const result = flyerDbInsertSchema.safeParse(invalid); expect(result.success).toBe(false);