From 0436e95752826bee7786577ac1bc0d056af11bc8 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Sun, 31 Mar 2024 01:20:36 -0700 Subject: [PATCH] chore: do not cleanup with this.usePrebuiltWDA (#882) --- lib/webdriveragent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/webdriveragent.js b/lib/webdriveragent.js index e374eb6ad..a4b316637 100644 --- a/lib/webdriveragent.js +++ b/lib/webdriveragent.js @@ -449,7 +449,7 @@ class WebDriverAgent { // useXctestrunFile and usePrebuiltWDA use existing dependencies // It depends on user side - if (this.idb || this.useXctestrunFile || (this.derivedDataPath && this.usePrebuiltWDA)) { + if (this.idb || this.useXctestrunFile || this.usePrebuiltWDA) { this.log.info('Skipped WDA project cleanup according to the provided capabilities'); } else { const synchronizationKey = path.normalize(this.bootstrapPath);