From 842070928c1ac6149b6db27363e78deb88ac1e79 Mon Sep 17 00:00:00 2001 From: Martin Boonk Date: Sat, 4 May 2024 22:56:37 +0200 Subject: [PATCH] runapptests - Reset apploaders device installed apps list for each test --- bin/runapptests.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/runapptests.js b/bin/runapptests.js index a5f439bc3..3107d1fd9 100755 --- a/bin/runapptests.js +++ b/bin/runapptests.js @@ -273,6 +273,7 @@ function runStep(step, subtest, test, state){ } function runTest(test, testState) { + apploader.reset(); var app = apploader.apps.find(a=>a.id==test.app); if (!app) ERROR(`App ${JSON.stringify(test.app)} not found`); if (app.custom) ERROR(`App ${JSON.stringify(appId)} requires HTML customisation`);