mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
3d989eba23
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
27 lines
866 B
JavaScript
27 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
|
|
})
|
|
});
|
|
});
|
|
});
|