23 lines
525 B
JavaScript
23 lines
525 B
JavaScript
(function() {
|
|
"use strict";
|
|
|
|
// Use 'testing' Ghost config
|
|
process.env.NODE_ENV = 'testing';
|
|
|
|
var migrations = {
|
|
one: require("../../shared/data/migration/001")
|
|
},
|
|
helpers;
|
|
|
|
helpers = {
|
|
resetData: function () {
|
|
return migrations.one.down().then(function () {
|
|
return migrations.one.up();
|
|
}, function() {
|
|
throw new Error("Failed to reset data");
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = helpers;
|
|
}()); |