Ghost/ghost/core/test/e2e-frontend/member_stats.test.js
Daniel Lockyer 3d989eba23 Converted Ghost repo into a monorepo
refs https://github.com/TryGhost/Toolbox/issues/354

- this commit turns the Ghost repo into a monorepo so we can bring our
  internal packages back in, which makes life easier when working on
  Ghost
2022-07-20 16:41:05 +02:00

29 lines
861 B
JavaScript

const should = require('should');
const {memberCountRounding, getMemberStats} = require('../../core/frontend/utils/member-count.js');
describe('Front-end member stats ', function () {
it('should return free', async function () {
const members = await getMemberStats();
const {free} = members;
should.exist(free);
});
it('should return paid', async function () {
const members = await getMemberStats();
const {paid} = members;
should.exist(paid);
});
it('should return comped', async function () {
const members = await getMemberStats();
const {comped} = members;
should.exist(comped);
});
it('should return total', async function () {
const members = await getMemberStats();
const {total} = members;
should.exist(total);
});
});