mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
da8cb5c078
no issue Some tests timeout for an unknown reason. This commit adds some missing awaits for async test methods (that don't perform any async operation, but are marked as async).
26 lines
866 B
JavaScript
26 lines
866 B
JavaScript
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
|
|
describe('Tiers Content API', function () {
|
|
let agent;
|
|
|
|
before(async function () {
|
|
agent = await agentProvider.getContentAPIAgent();
|
|
await fixtureManager.init('members', 'api_keys', 'tiers:archived');
|
|
await agent.authenticate();
|
|
});
|
|
|
|
it('Can request only active tiers', async function () {
|
|
await agent.get('/tiers/?include=monthly_price')
|
|
.expectStatus(200)
|
|
.matchHeaderSnapshot({
|
|
etag: matchers.anyEtag
|
|
})
|
|
.matchBodySnapshot({
|
|
tiers: Array(2).fill({
|
|
id: matchers.anyObjectId,
|
|
created_at: matchers.anyISODate,
|
|
updated_at: matchers.anyISODate
|
|
})
|
|
});
|
|
});
|
|
});
|