mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 15:08:37 +00:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
export const mochaHooks = (): Mocha.RootHookObject => {
|
|
return {
|
|
async beforeAll(this: Mocha.Context) {
|
|
await import('reflect-metadata');
|
|
},
|
|
};
|
|
};
|