mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
759e362a30
refs 31c1d4f513
Still had the camel case 🙈
26 lines
730 B
JavaScript
26 lines
730 B
JavaScript
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
const {anyEtag, anyISODate} = matchers;
|
|
|
|
let agent;
|
|
|
|
describe('Stats API', function () {
|
|
before(async function () {
|
|
agent = await agentProvider.getAdminAPIAgent();
|
|
await fixtureManager.init('members');
|
|
await agent.loginAsOwner();
|
|
});
|
|
|
|
it('Can fetch member count history', async function () {
|
|
await agent
|
|
.get(`/stats/member_count`)
|
|
.expectStatus(200)
|
|
.matchBodySnapshot({
|
|
stats: [{
|
|
date: anyISODate
|
|
}]
|
|
})
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag
|
|
});
|
|
});
|
|
});
|