From bd139e7e51302462bcf8e43d0df1f53ad8bf0433 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 15 Oct 2024 18:00:47 +0200 Subject: [PATCH] uninstall element --- test/test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.js b/test/test.js index 2a2e688..86567f2 100644 --- a/test/test.js +++ b/test/test.js @@ -336,6 +336,10 @@ describe('Application life cycle test', function () { execSync(`cloudron uninstall --app ${app.id}`, EXEC_ARGS); }); + it('uninstall element-web app', function () { + execSync(`cloudron uninstall --app ${ELEMENT_LOCATION}`, EXEC_ARGS); + }); + // test update it('clear cache', clearCache); it('can install app for update', function () { execSync('cloudron install --appstore-id org.matrix.synapse --location ' + LOCATION, EXEC_ARGS); });