mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 01:03:23 +03:00
9ba251238a
refs https://github.com/TryGhost/Team/issues/2400 - we've deemed it useful to start to return `Content-Version` for all API requests, because it becomes useful to know which version of Ghost a response has come from in logs - this should also help us detect Admin<->Ghost API mismatches, which was the cause of a bug recently (ref'd issue)
28 lines
929 B
JavaScript
28 lines
929 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({
|
|
'content-version': matchers.anyContentVersion,
|
|
etag: matchers.anyEtag
|
|
})
|
|
.matchBodySnapshot({
|
|
tiers: Array(2).fill({
|
|
id: matchers.anyObjectId,
|
|
created_at: matchers.anyISODate,
|
|
updated_at: matchers.anyISODate
|
|
})
|
|
});
|
|
});
|
|
});
|