the cloudron test-app requires email for the addon_check
This commit is contained in:
parent
8146074ead
commit
68fb024d85
@ -54,6 +54,10 @@ describe('Alt domain test', function () {
|
||||
cloudron.setCredentials(owner.password, token);
|
||||
});
|
||||
|
||||
it('can enable email', function () {
|
||||
cloudron.setEmailEnabled(true);
|
||||
});
|
||||
|
||||
var location = 'test' + (Math.random() * 10000).toFixed();
|
||||
it('can install app', function () {
|
||||
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
|
||||
|
@ -53,6 +53,10 @@ describe('Application flow test', function () {
|
||||
cloudron.setCredentials(owner.password, token);
|
||||
});
|
||||
|
||||
it('can enable email', function () {
|
||||
cloudron.setEmailEnabled(true);
|
||||
});
|
||||
|
||||
var location = 'test' + (Math.random() * 10000).toFixed();
|
||||
it('can install app', function () {
|
||||
var manifest = appStore.getManifest(common.TESTAPP_ID, common.TESTAPP_VERSION);
|
||||
|
@ -54,6 +54,10 @@ describe('Application update test', function () {
|
||||
cloudron.setCredentials(owner.password, token);
|
||||
});
|
||||
|
||||
it('can enable email', function () {
|
||||
cloudron.setEmailEnabled(true);
|
||||
});
|
||||
|
||||
var location = 'test' + (Math.random() * 10000).toFixed();
|
||||
it('can install app', function () {
|
||||
appId = cloudron.installApp(location, APP_ID + '@' + APP_OLD_VERSION);
|
||||
|
@ -65,6 +65,10 @@ describe('Cloudron update testing', function () {
|
||||
cloudron.activate(owner);
|
||||
});
|
||||
|
||||
it('can enable email', function () {
|
||||
cloudron.setEmailEnabled(true);
|
||||
});
|
||||
|
||||
it('can save a sieve script', function (done) {
|
||||
cloudron.saveSieveScript(owner, done);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user