mirror of
https://git.cloudron.io/cloudron/gitea-app.git
synced 2024-11-25 09:30:58 +00:00
Ensure the tests work with other instances installed
This commit is contained in:
parent
7fd766b348
commit
b86f9c7a20
1 changed files with 2 additions and 2 deletions
|
@ -293,7 +293,7 @@ return done();
|
|||
it('can edit file', editFile);
|
||||
|
||||
it('can restart app', function (done) {
|
||||
execSync('cloudron restart --wait');
|
||||
execSync('cloudron restart --wait --app ' + app.id);
|
||||
done();
|
||||
});
|
||||
|
||||
|
@ -317,7 +317,7 @@ return done();
|
|||
|
||||
it('move to different location', function () {
|
||||
//browser.manage().deleteAllCookies(); // commented because of error "'Network.deleteCookie' wasn't found"
|
||||
execSync('cloudron configure --wait --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
execSync('cloudron configure --wait --location ' + LOCATION + '2 --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
var inspect = JSON.parse(execSync('cloudron inspect'));
|
||||
app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0];
|
||||
expect(app).to.be.an('object');
|
||||
|
|
Loading…
Reference in a new issue