mirror of
https://git.cloudron.io/cloudron/gitea-app.git
synced 2024-10-31 21:38:52 +00:00
uninstall only after test is done
This commit is contained in:
parent
85e38c63d3
commit
0c58c963e9
1 changed files with 4 additions and 3 deletions
|
@ -242,8 +242,9 @@ describe('Application life cycle test', function () {
|
|||
browser.findElement(by.id('user_name')).sendKeys(email);
|
||||
browser.findElement(by.id('password')).sendKeys(password);
|
||||
browser.findElement(by.tagName('form')).submit();
|
||||
browser.wait(until.elementLocated(by.linkText('Dashboard')), 4000).then(function () { done(); });
|
||||
|
||||
execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
browser.wait(until.elementLocated(by.linkText('Dashboard')), 4000).then(function () {
|
||||
execSync('cloudron uninstall --app ' + app.id, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue