Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/extension-runners/firefox-android.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,13 @@ export class FirefoxAndroidExtensionRunner {
await this.apkPackagesDiscoveryAndSelect();
await this.adbCheckRuntimePermissions();
await this.adbForceStopSelectedPackage();

for (const fn of this.cleanupCallbacks) {
try {
fn();
} catch (error) {
log.error(error);
}
}
// Create profile prefs (with enabled remote RDP server), prepare the
// artifacts and temporary directory on the selected device, and
// push the profile preferences to the remote profile dir.
Expand Down