From c91f09a34fd5c269625bea0e8b14de3425fb69c9 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sat, 13 Aug 2016 10:42:19 -0700 Subject: [PATCH] not sure why the breather has to be taken after user creation dovecot is not able to find the user if we send a mail immediately after activation. --- test/selfhost-ec2-create-test.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/selfhost-ec2-create-test.js b/test/selfhost-ec2-create-test.js index 56094ad..e8aa361 100644 --- a/test/selfhost-ec2-create-test.js +++ b/test/selfhost-ec2-create-test.js @@ -109,12 +109,6 @@ describe('Selfhost EC2 Cloudron creation', function () { }); }); - it('can take a breather', function () { - // ec2 can be really slow to come up. the addon containers take their own sweet time (they are "async" with the box startup) - // we end up sending email even before the mail container is ready - sleep(120); - }); - it('can activate the box', function () { cloudron.activate(owner); }); @@ -124,6 +118,12 @@ describe('Selfhost EC2 Cloudron creation', function () { cloudron.setCredentials(owner.password, token); }); + it('can take a breather', function () { + // ec2 can be really slow to come up. the addon containers take their own sweet time (they are "async" with the box startup) + // we end up sending email even before the mail container is ready + sleep(120); + }); + it('send mail to cloudron user', function (done) { mailer.sendMailToCloudronUser(owner.username + '@' + SELFHOST_DOMAIN, done); });