google-play-scraper
Version:
scrapes app data from google play store
24 lines (21 loc) • 702 B
JavaScript
import { assert } from 'chai';
import gplay from '../index.js';
import * as R from 'ramda';
describe('Categories method', () => {
it('should fetch valid list of categories', () => {
return gplay.categories().then(categories => {
assert.isArray(categories);
assert.isTrue(categories.length > 0);
});
});
it('should have all categories from constant list of categories', () => {
return gplay.categories().then(categories => {
const categoriesConst = Object.keys(gplay.category);
assert.deepEqual(
R.difference(categories, categoriesConst),
[],
'Google Play has categories that are not in "category" constant'
);
});
});
});