1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00
budibase/jestTestcontainersConfigGenerator.js
2024-03-25 15:24:14 +00:00

16 lines
282 B
JavaScript

module.exports = () => {
return {
couchdb: {
image: "budibase/couchdb",
ports: [5984],
env: {
COUCHDB_PASSWORD: "budibase",
COUCHDB_USER: "budibase",
},
wait: {
type: "ports",
timeout: 20000,
},
},
}
}