Skip to main content
Module

x/google_play_scraper/test/lib.similar.js

Node.js scraper to get data from Google Play
Go to Latest
File
'use strict';
const gplay = require('../index');const assertValidApp = require('./common').assertValidApp;
describe('Similar method', () => { it('should fetch a valid application list', () => { return gplay.similar({ appId: 'com.mojang.minecraftpe' }) .then((apps) => apps.map(assertValidApp)); });});