1
0
Fork 0
mirror of synced 2024-06-03 11:04:54 +12:00
budibase/jestTestcontainersConfigGenerator.js

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: 20000,
}
}
}
}