1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00
budibase/jestTestcontainersConfigGenerator.js
2023-08-23 15:29:19 +01:00

17 lines
280 B
JavaScript

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