budibase/jestTestcontainersConfigGen...

27 lines
494 B
JavaScript
Raw Normal View History

module.exports = () => {
2023-01-24 12:02:58 +01:00
return {
couchdb: {
image: "budibase/couchdb",
ports: [5984],
env: {
COUCHDB_PASSWORD: "budibase",
COUCHDB_USER: "budibase",
},
wait: {
type: "ports",
timeout: 10000,
}
}
2023-01-24 12:02:58 +01:00
}
}
// module.exports = () => {
// return {
// dockerCompose: {
// composeFilePath: "../../hosting",
// composeFile: "docker-compose.test.yaml",
// startupTimeout: 10000,
// },
// }
// }