budibase/jest-testcontainers-config.js

16 lines
314 B
JavaScript
Raw Normal View History

module.exports = {
devEnv: {
2023-01-23 11:45:59 +01:00
image: "budibase/dependencies",
tag: "latest",
ports: [6379, 5984, 9000],
2023-01-23 17:53:34 +01:00
env: {
COUCHDB_USER: "test_couchdb_user",
COUCHDB_PASSWORD: "test_couchdb_password",
},
wait: {
type: "text",
text: "Test environment started...",
},
},
}