-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ember test #4
Comments
Note that the default command for this docker image is "server". Thus, when you just do a If you are using a generic docker-compose.yml file something like: server: ember port = 4200livereload port = 49152ports: ...then you would simply leave off the command for the $ docker-compose run server -v ...or in your specific example: $ docker-compose run server test 1..8 tests 8pass 8skip 0fail 0okHowever, if you are using a docker-compose.yml file with additional services defined like in the README.md of this docker image, ember: &defaults then you should be able to execute the 'ember' service defined in that docker-compose.yml file as: $ docker-compose run ember test 1..8 tests 8pass 8skip 0fail 0okNote that with the docker-compose.yml file above, both
|
I'm using ember-cli-mocha, I don't know why I cannot see the tests running in the browser using
docker-compose run frontend ember test --server
Also tried to pass the host option--host 0.0.0.0
but with no luckThe forwarded port for the server is
"8081:7357"
The text was updated successfully, but these errors were encountered: