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
29 lines
795 B
JavaScript
29 lines
795 B
JavaScript
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
const {anyEtag, anyContentLength} = 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');
|
|
await agent.authenticate();
|
|
});
|
|
|
|
it('Can request settings', async function () {
|
|
await agent.get('settings/')
|
|
.expectStatus(200)
|
|
.matchHeaderSnapshot({
|
|
etag: anyEtag,
|
|
'content-length': anyContentLength
|
|
})
|
|
.matchBodySnapshot({
|
|
settings: settingsMatcher
|
|
});
|
|
});
|
|
});
|