sequelize update

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2021-04-08 01:00:00 +00:00
parent c7d1528bd7
commit 461aa04b8b
8 changed files with 779 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
// Global fixture.
exports.mochaGlobalSetup = async function() {
console.log('mochaGlobalSetup');
};
// Root hook.
exports.mochaHooks = {
before(done) {
console.log('mochaHooks.before');
done();
},
beforeEach(done) {
console.log('mochaHooks.beforeEach');
done();
},
};
function myhelper() {
console.error('myhelper');
}
exports.myhelper = myhelper;