omnivore/packages/api/test/global-teardown.ts
2022-02-11 09:24:33 -08:00

6 lines
158 B
TypeScript

import { getConnection } from 'typeorm'
export async function mochaGlobalTeardown() {
await getConnection().close()
console.log('db connection close')
}