diff --git a/test/cloudron-user-test.js b/test/cloudron-user-test.js index 41e6787..1ba4eb1 100644 --- a/test/cloudron-user-test.js +++ b/test/cloudron-user-test.js @@ -57,15 +57,15 @@ describe('Cloudron user creation testing', function () { cloudron.activate(owner); }); - it('can set cloudron name', function () { - cloudron.setCloudronName('Acme Inc'); - }); - - it('can login to the box', function () { + it('can login to the box', function () { var token = cloudron.getOauthToken(owner); cloudron.setCredentials(owner.password, token); }); + it('can set cloudron name', function () { + cloudron.setCloudronName('Acme Inc'); + }); + it('can enable email', function () { cloudron.setEmailEnabled(true); });