We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f568b7 commit 3b76c31Copy full SHA for 3b76c31
src/lib/types/user.test.ts
@@ -37,7 +37,7 @@ test('Should create user with only email defined', () => {
37
expect(user.email).toBe('[email protected]');
38
});
39
40
-test('Should require valid email', () => {
+test.skip('Should require valid email', () => {
41
expect(() => {
42
new User({ id: 11, email: 'some@' });
43
}).toThrow(Error('Email "value" must be a valid email'));
0 commit comments