t status
Merge branch 'fix/user-search-api' of github.com:Budibase/budibase into fix/user-search-api
This commit is contained in:
commit
d44ad549ef
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "2.11.31",
|
"version": "2.11.32",
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"packages": [
|
"packages": [
|
||||||
"packages/*"
|
"packages/*"
|
||||||
|
|
|
@ -43,6 +43,10 @@ describe("postgres integrations", () => {
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
afterAll(async () => {
|
||||||
|
await databaseTestProviders.postgres.stopContainer()
|
||||||
|
})
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
async function createAuxTable(prefix: string) {
|
async function createAuxTable(prefix: string) {
|
||||||
return await config.createTable({
|
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