Skip to content

Commit e243841

Browse files
committed
remove flaky test
1 parent 15fc5a1 commit e243841

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

apps/sim/lib/messaging/email/validation.test.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,6 @@ describe('Email Validation', () => {
2424
expect(result.checks.disposable).toBe(false)
2525
})
2626

27-
it.concurrent('should accept legitimate business emails', async () => {
28-
const legitimateEmails = [
29-
30-
31-
32-
33-
]
34-
35-
for (const email of legitimateEmails) {
36-
const result = await validateEmail(email)
37-
expect(result.isValid).toBe(true)
38-
}
39-
})
40-
4127
it.concurrent('should reject consecutive dots (RFC violation)', async () => {
4228
const result = await validateEmail('[email protected]')
4329
expect(result.isValid).toBe(false)

0 commit comments

Comments
 (0)