blueimp / nightwatch

This project is deprecated in favor of blueimp/wdio.
https://github.com/blueimp/wdio
134 stars 43 forks source link

Running tests in Circle CI's docker container #10

Closed aamorozov closed 7 years ago

aamorozov commented 7 years ago

Hi @blueimp! Thank you for a great tool! I have a question regarding using this project in continuous integration, in my case Circle CI. Have you used it in the CI environment? I'm struggling a bit in either I should keep using docker compose or just rely on CI's default docker image? Please advice if you have the context on it. Thank you!

blueimp commented 7 years ago

Hi @aamorozov I'm not a Circle CI user, but this project requires multiple Docker images and not a single one.

The nightwatch Docker image only contains the nightwatch executable, but you will still need at least the Chromedriver one as well as the Docker images containing your own application code.

If your CI system supports it, you would use docker compose.

aamorozov commented 7 years ago

@blueimp Thank you! It does support multiple images, I'll discover further by myself