1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00
budibase/jestTestcontainersConfigGenerator.js

17 lines
280 B
JavaScript
Raw Normal View History

module.exports = () => {
2023-01-25 00:02:58 +13:00
return {
couchdb: {
image: "budibase/couchdb",
ports: [5984],
env: {
COUCHDB_PASSWORD: "budibase",
COUCHDB_USER: "budibase",
},
wait: {
type: "ports",
timeout: 20000,
}
}
2023-01-25 00:02:58 +13:00
}
}