mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Removed .only from core/test/unit/api/v2/index_spec.js
no issue - oops
This commit is contained in:
parent
d017cf32a0
commit
1c1b9021db
1 changed files with 2 additions and 1 deletions
|
@ -6,6 +6,7 @@ describe('Unit: v2/utils/index', function () {
|
||||||
afterEach(function () {
|
afterEach(function () {
|
||||||
sinon.restore();
|
sinon.restore();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('isContentAPI', function () {
|
describe('isContentAPI', function () {
|
||||||
it('is truthy when having api key of content type', function () {
|
it('is truthy when having api key of content type', function () {
|
||||||
const frame = {
|
const frame = {
|
||||||
|
@ -21,7 +22,7 @@ describe('Unit: v2/utils/index', function () {
|
||||||
should(utils.isContentAPI(frame)).equal(true);
|
should(utils.isContentAPI(frame)).equal(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it.only('is falsy when having api key and a user', function () {
|
it('is falsy when having api key and a user', function () {
|
||||||
const frame = {
|
const frame = {
|
||||||
options: {
|
options: {
|
||||||
context: {
|
context: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue