since we cleared cache, not needed

This commit is contained in:
Girish Ramakrishnan 2024-12-22 16:31:37 +01:00
parent a4371d0283
commit 85b324cd5c

View file

@ -227,7 +227,6 @@ describe('Application life cycle test', function () {
it('logout', clearCache);
it('uninstall app', async function () {
await browser.executeScript('localStorage.clear();');
execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS);
});
@ -244,7 +243,6 @@ describe('Application life cycle test', function () {
it('can logout', clearCache);
it('uninstall app (no sso)', async function () {
await browser.executeScript('localStorage.clear();');
execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS);
});
@ -271,7 +269,6 @@ describe('Application life cycle test', function () {
it('logout', clearCache);
it('uninstall app', async function () {
await browser.executeScript('localStorage.clear();');
execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS);
});
});