Skip to content

Commit 3b76c31

Browse files
authored
fix: relax email checking (#9183)
1 parent 9f568b7 commit 3b76c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/types/user.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ test('Should create user with only email defined', () => {
3737
expect(user.email).toBe('[email protected]');
3838
});
3939

40-
test('Should require valid email', () => {
40+
test.skip('Should require valid email', () => {
4141
expect(() => {
4242
new User({ id: 11, email: 'some@' });
4343
}).toThrow(Error('Email "value" must be a valid email'));

0 commit comments

Comments
 (0)