Skip to content

Commit

Permalink
fix: Update property name after lru-cache package bump (#16446)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Feb 14, 2022
1 parent 632b752 commit 1165269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/base-driver/lib/basedriver/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const DEFAULT_BASENAME = 'appium-app';
const APP_DOWNLOAD_TIMEOUT_MS = 120 * 1000;

process.on('exit', () => {
if (APPLICATIONS_CACHE.itemCount === 0) {
if (APPLICATIONS_CACHE.size === 0) {
return;
}

Expand Down

0 comments on commit 1165269

Please sign in to comment.