mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Renamed mock-utils to mock-manager
refs: https://github.com/TryGhost/Toolbox/issues/158 - continuing to try to make the framework as clean as possible
This commit is contained in:
parent
59c0d4b4e4
commit
2c14923bb6
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ const uuid = require('uuid');
|
||||||
const fixtures = require('./fixture-utils');
|
const fixtures = require('./fixture-utils');
|
||||||
const redirectsUtils = require('./redirects');
|
const redirectsUtils = require('./redirects');
|
||||||
const configUtils = require('./configUtils');
|
const configUtils = require('./configUtils');
|
||||||
const mockUtils = require('./e2e-framework-mock-utils');
|
const mockManager = require('./e2e-framework-mock-manager');
|
||||||
|
|
||||||
const boot = require('../../core/boot');
|
const boot = require('../../core/boot');
|
||||||
const TestAgent = require('./test-agent');
|
const TestAgent = require('./test-agent');
|
||||||
|
@ -140,7 +140,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
// Mocks and Stubs
|
// Mocks and Stubs
|
||||||
mockManager: mockUtils,
|
mockManager,
|
||||||
|
|
||||||
// DB State Manipulation
|
// DB State Manipulation
|
||||||
fixtureManager: {
|
fixtureManager: {
|
||||||
|
|
Loading…
Reference in a new issue