From ec44429f870b88a5d5331187c2baa29d20c48c88 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 13 Sep 2021 14:26:45 -0700 Subject: [PATCH] install by id --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 70ab47f..b1a7d91 100644 --- a/test/test.js +++ b/test/test.js @@ -240,7 +240,7 @@ describe('Application life cycle test', function () { // test update it('can install app', function (done) { - execSync('cloudron install --appstore-id ' + app.manifest.id + ' --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); + execSync('cloudron install --appstore-id org.joinpeertube.cloudronapp --location ' + LOCATION, { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); setTimeout(done, 20000); // takes a bit to create root user in background });