Ghost/core/test/ghost/helpers.js

18 lines
367 B
JavaScript
Raw Normal View History

(function() {
"use strict";
var migrations = {
one: require("../../shared/data/migration/001")
},
helpers;
helpers = {
resetData: function () {
return migrations.one.down().then(function () {
return migrations.one.up();
});
}
};
module.exports = helpers;
}());