mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 19:02:29 +03:00
7f1d3ebc07
- move all test files from core/test to test/ - updated all imports and other references - all code inside of core/ is then application code - tests are correctly at the root level - consistent with other repos/projects Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
31 lines
860 B
JavaScript
31 lines
860 B
JavaScript
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const utils = require('../../../../../core/server/api/canary/utils');
|
|
|
|
describe('Unit: canary/utils/index', function () {
|
|
afterEach(function () {
|
|
sinon.restore();
|
|
});
|
|
|
|
describe('isContentAPI', function () {
|
|
it('is true when apiType is "content"', function () {
|
|
const frame = {
|
|
apiType: 'content'
|
|
};
|
|
should(utils.isContentAPI(frame)).equal(true);
|
|
});
|
|
|
|
it('is false when apiType is admin', function () {
|
|
const frame = {
|
|
apiType: 'admin',
|
|
options: {
|
|
context: {
|
|
no: 'public'
|
|
}
|
|
}
|
|
};
|
|
should(utils.isContentAPI(frame)).equal(false);
|
|
});
|
|
});
|
|
});
|