mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Improved naming for regression tests
no-issue This allows us to see whihc tests are failing
This commit is contained in:
parent
a5a7e7e919
commit
aacaa7012c
6 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@ const config = require('../../../../../server/config');
|
|||
const ghost = testUtils.startGhost;
|
||||
let request;
|
||||
|
||||
describe('Pages Content API', function () {
|
||||
describe('api/canary/content/pages', function () {
|
||||
before(function () {
|
||||
return ghost()
|
||||
.then(function () {
|
||||
|
|
|
@ -10,7 +10,7 @@ const config = require('../../../../../server/config');
|
|||
const ghost = testUtils.startGhost;
|
||||
let request;
|
||||
|
||||
describe('Posts', function () {
|
||||
describe('api/canary/content/posts', function () {
|
||||
before(function () {
|
||||
return ghost()
|
||||
.then(function () {
|
||||
|
|
|
@ -8,7 +8,7 @@ const config = require('../../../../../server/config');
|
|||
const ghost = testUtils.startGhost;
|
||||
let request;
|
||||
|
||||
describe('Tags', function () {
|
||||
describe('api/canary/content/tags', function () {
|
||||
before(function () {
|
||||
return ghost()
|
||||
.then(function () {
|
||||
|
|
|
@ -8,7 +8,7 @@ const config = require('../../../../../server/config');
|
|||
const ghost = testUtils.startGhost;
|
||||
let request;
|
||||
|
||||
describe('Pages Content API', function () {
|
||||
describe('api/v2/content/pages', function () {
|
||||
before(function () {
|
||||
return ghost()
|
||||
.then(function () {
|
||||
|
|
|
@ -10,7 +10,7 @@ const config = require('../../../../../server/config');
|
|||
const ghost = testUtils.startGhost;
|
||||
let request;
|
||||
|
||||
describe('Posts', function () {
|
||||
describe('api/v2/content/posts', function () {
|
||||
before(function () {
|
||||
return ghost()
|
||||
.then(function () {
|
||||
|
|
|
@ -8,7 +8,7 @@ const config = require('../../../../../server/config');
|
|||
const ghost = testUtils.startGhost;
|
||||
let request;
|
||||
|
||||
describe('Tags', function () {
|
||||
describe('api/v2/content/tags', function () {
|
||||
before(function () {
|
||||
return ghost()
|
||||
.then(function () {
|
||||
|
|
Loading…
Add table
Reference in a new issue