Files
nest/hooks/mocha-init-hook.ts
2022-08-21 14:23:19 -04:00

8 lines
165 B
TypeScript

export const mochaHooks = (): Mocha.RootHookObject => {
return {
async beforeAll(this: Mocha.Context) {
await import('reflect-metadata');
},
};
};