0
Fork 0
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:
Fabien O'Carroll 2019-08-13 12:15:22 +08:00
parent a5a7e7e919
commit aacaa7012c
6 changed files with 6 additions and 6 deletions

View file

@ -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 () {

View file

@ -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 () {

View file

@ -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 () {

View file

@ -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 () {

View file

@ -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 () {

View file

@ -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 () {