1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

Merge pull request #11749 from Budibase/fix/qa-core-pg

Fix/qa core pg
This commit is contained in:
Martin McKeaveney 2023-09-12 16:37:06 +01:00 committed by GitHub
commit f906158f41

View file

@ -17,8 +17,7 @@ describe("getExternalSchema", () => {
}
beforeAll(async () => {
// This is left on propose without a tag, so if a new version introduces a breaking change we will be notified
const container = await new GenericContainer("postgres")
const container = await new GenericContainer("postgres:13.12")
.withExposedPorts(5432)
.withEnv("POSTGRES_PASSWORD", "password")
.start()