mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
1b96ce2794
refs https://github.com/TryGhost/Team/issues/1313 When adding the tiers endpoint the Content API was missed, this is needed so that themes can access Tiers via the `{{#get}}` helper.
27 lines
808 B
JavaScript
27 lines
808 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');
|
|
agent.authenticate();
|
|
});
|
|
|
|
it('Can request tiers', async function () {
|
|
await agent.get('/tiers/')
|
|
.expectStatus(200)
|
|
.matchHeaderSnapshot({
|
|
etag: matchers.anyEtag
|
|
})
|
|
.matchBodySnapshot({
|
|
tiers: Array(2).fill({
|
|
id: matchers.anyObjectId,
|
|
created_at: matchers.anyISODate,
|
|
updated_at: matchers.anyISODate
|
|
})
|
|
});
|
|
});
|
|
});
|