Make sure to stop postgres container after the postgres integration tests have run.
This commit is contained in:
parent
702ee4d504
commit
18363b7b60
|
@ -43,6 +43,10 @@ describe("postgres integrations", () => {
|
|||
)
|
||||
})
|
||||
|
||||
afterAll(async () => {
|
||||
await databaseTestProviders.postgres.stopContainer()
|
||||
})
|
||||
|
||||
beforeEach(async () => {
|
||||
async function createAuxTable(prefix: string) {
|
||||
return await config.createTable({
|
||||
|
|
|
@ -36,3 +36,10 @@ export async function getDsConfig(): Promise<Datasource> {
|
|||
},
|
||||
}
|
||||
}
|
||||
|
||||
export async function stopContainer() {
|
||||
if (container) {
|
||||
await container.stop()
|
||||
container = undefined
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue