use cloudron.populateAddons
This commit is contained in:
parent
79ead77d87
commit
bee818e13a
@ -60,13 +60,7 @@ describe('Application flow test', function () {
|
||||
});
|
||||
|
||||
it('can populate the addons', function () {
|
||||
var res = request.post('https://' + location + '-' + box.domain + '/populate_addons').end();
|
||||
assert.strictEqual(res.statusCode, 200);
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
cloudron.populateAddons(location);
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
|
@ -62,12 +62,7 @@ describe('Cloudron backup testing', function () {
|
||||
});
|
||||
|
||||
it('can populate the addons', function () {
|
||||
var res = request.post('https://' + location + '-' + box.domain + '/populate_addons').end();
|
||||
assert.strictEqual(res.statusCode, 200);
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
cloudron.populateAddons(location);
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
|
@ -77,13 +77,7 @@ describe('Cloudron update testing', function () {
|
||||
});
|
||||
|
||||
it('can populate the addons', function () {
|
||||
var res = request.post('https://' + location + '-' + box.domain + '/populate_addons').end();
|
||||
assert.strictEqual(res.statusCode, 200);
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
cloudron.populateAddons(location);
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
|
@ -77,13 +77,7 @@ describe('Cloudron update testing', function () {
|
||||
});
|
||||
|
||||
it('can populate the addons', function () {
|
||||
var res = request.post('https://' + location + '-' + box.domain + '/populate_addons').end();
|
||||
assert.strictEqual(res.statusCode, 200);
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
cloudron.populateAddons(location);
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
|
@ -111,13 +111,7 @@ describe('Custom domain test', function () {
|
||||
});
|
||||
|
||||
it('can populate the addons', function () {
|
||||
var res = request.post('https://' + location + '.' + box.domain + '/populate_addons').end();
|
||||
assert.strictEqual(res.statusCode, 200);
|
||||
assert.strictEqual(res.body.mysql, 'OK');
|
||||
assert.strictEqual(res.body.postgresql, 'OK');
|
||||
assert.strictEqual(res.body.mongodb, 'OK');
|
||||
assert.strictEqual(res.body.localstorage, 'OK');
|
||||
assert.strictEqual(res.body.redis, 'OK');
|
||||
cloudron.populateAddons(location);
|
||||
});
|
||||
|
||||
it('can check the addons', function () {
|
||||
|
Loading…
Reference in New Issue
Block a user