google-play-scraper
google-play-scraper copied to clipboard
Help Needed to fix a test : looking for an app with androidMaxVersion
Description:
The followinf test does not pass :
it('should fetch android version limit set for some old apps', () => {
return gplay.app({ appId: 'air.com.zinkia.playset' })
.then((app) => {
assert.equal(app.androidVersion, '4.2');
assert.equal(app.androidMaxVersion, '7.1.1');
});
});
Reason:
App 'air.com.zinkia.playset' does not exists anymore.
Solution:
Find another app with androidMaxVersion
what is it that you are trying to do?
Fix the existing test
what test?