mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
25 lines
689 B
JavaScript
25 lines
689 B
JavaScript
const {expect} = require('chai');
|
|
const {any, stringMatching} = require('expect');
|
|
|
|
const framework = require('../../../../utils/e2e-framework');
|
|
|
|
describe('Config API', function () {
|
|
let agent;
|
|
|
|
before(async function () {
|
|
agent = await framework.getAgent('/ghost/api/canary/admin/');
|
|
});
|
|
|
|
it('can retrieve config and all expected properties', async function () {
|
|
const res = await agent
|
|
.get('site/');
|
|
|
|
expect(res.body.site).to.matchSnapshot({
|
|
version: stringMatching(/\d+\.\d+/)
|
|
});
|
|
expect(res.headers).to.matchSnapshot({
|
|
date: any(String),
|
|
etag: any(String)
|
|
});
|
|
});
|
|
});
|