Ghost/test/e2e-api/content/settings.test.js

28 lines
719 B
JavaScript
Raw Normal View History

const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
const {anyEtag} = matchers;
const settingsMatcher = {
version: matchers.anyString
};
describe('Settings Content API', function () {
let agent;
before(async function () {
agent = await agentProvider.getContentAPIAgent();
await fixtureManager.init('api_keys');
agent.authenticate();
});
it('Can request settings', async function () {
await agent.get('settings/')
.expectStatus(200)
.matchHeaderSnapshot({
etag: anyEtag
})
.matchBodySnapshot({
settings: settingsMatcher
});
});
});