diff --git a/test/message.ts b/test/message.ts index db48a5e..1bfa615 100644 --- a/test/message.ts +++ b/test/message.ts @@ -133,8 +133,6 @@ test.cb('simple unicode text message', (t) => { }); test.cb.skip('very large text message', (t) => { - t.timeout(20000); - // thanks to jart+loberstech for this one! const msg = { subject: 'this is a test TEXT message from emailjs', @@ -156,8 +154,6 @@ test.cb.skip('very large text message', (t) => { }); test.cb('very large text data message', (t) => { - t.timeout(10000); - const text = '
' +
 		readFileSync(join(__dirname, 'attachments/smtp.txt'), 'utf-8') +
diff --git a/test/server.ts b/test/server.ts
index 8865dd9..d5cf522 100644
--- a/test/server.ts
+++ b/test/server.ts
@@ -5,8 +5,6 @@ import { client as c, message as m, SMTP } from '../email';
 test.cb(
 	'connecting to wrong email server should not invoke callback multiple times',
 	(t) => {
-		t.timeout(5000);
-
 		const client = new c.Client({ host: 'bar.baz' });
 		const msg = {
 			from: 'foo@bar.baz',