89493893d1
- this cleans up all imports or variables that aren't currently being used - this really helps keep the tests clean by only allowing what is needed - I've left `should` as an exemption for now because we need to clean up how it is used
29 lines
840 B
JavaScript
29 lines
840 B
JavaScript
const should = require('should');
|
|
const {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);
|
|
});
|
|
});
|