1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

pin version of postgres in QA core tests so it works with pg dump

This commit is contained in:
Martin McKeaveney 2023-09-12 11:26:26 +01:00
parent cb115f4f11
commit 1d0a42b59f

View file

@ -18,7 +18,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()