0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Moved labs unit test to correct folder

refs https://github.com/TryGhost/DevOps/issues/72

- labs.js is in the shared folder, so I've moved it to the corresponding
  folder to make understanding the tests easier
This commit is contained in:
Daniel Lockyer 2023-09-25 10:36:45 +02:00 committed by Daniel Lockyer
parent 369cb62f5e
commit 500507ff21

View file

@ -1,9 +1,9 @@
const should = require('should');
const sinon = require('sinon');
const configUtils = require('../../../utils/configUtils');
const labs = require('../../../../core/shared/labs');
const settingsCache = require('../../../../core/shared/settings-cache');
const configUtils = require('../../utils/configUtils');
const labs = require('../../../core/shared/labs');
const settingsCache = require('../../../core/shared/settings-cache');
function expectedLabsObject(obj) {
const withGA = Object.assign({}, obj);