mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs: https://github.com/TryGhost/Toolbox/issues/133 - instead of just a collection of utils, we now have a class that manages fixtures - this should allow us to change the path to fixtures, e.g. between prod/dev and test, so that different fixtures can be loaded by default - also makes it easier to test the fixture manager code itself
5 lines
204 B
JavaScript
5 lines
204 B
JavaScript
const FixtureManager = require('./fixture-manager');
|
|
const fixtures = require('./fixtures');
|
|
|
|
module.exports.FixtureManager = FixtureManager;
|
|
module.exports.fixtureManager = new FixtureManager(fixtures);
|