• Georgios Konstantopoulos's avatar
    Dockerize Integration Tests (#670) · 56226606
    Georgios Konstantopoulos authored
    * test: add docker image for integration tests
    
    * feat: add to docker-compose with scale 0
    
    * ci: run and publish integration tests to dockerhub
    
    * test: add option to not bring network up for docker integration tests
    
    * chore: add --fail --show-error to curl
    56226606
setup-docker-compose-network.js 173 Bytes
const { DockerComposeNetwork } = require("./shared/docker-compose")


before(async () => {
  if (!process.env.NO_NETWORK) {
    await new DockerComposeNetwork().up()
  }
})