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:
parent
369cb62f5e
commit
500507ff21
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
const should = require('should');
|
const should = require('should');
|
||||||
const sinon = require('sinon');
|
const sinon = require('sinon');
|
||||||
|
|
||||||
const configUtils = require('../../../utils/configUtils');
|
const configUtils = require('../../utils/configUtils');
|
||||||
const labs = require('../../../../core/shared/labs');
|
const labs = require('../../../core/shared/labs');
|
||||||
const settingsCache = require('../../../../core/shared/settings-cache');
|
const settingsCache = require('../../../core/shared/settings-cache');
|
||||||
|
|
||||||
function expectedLabsObject(obj) {
|
function expectedLabsObject(obj) {
|
||||||
const withGA = Object.assign({}, obj);
|
const withGA = Object.assign({}, obj);
|
Loading…
Add table
Reference in a new issue