Hello,
I have an application written in Elixir (1.6.6 with OTP 21) where I use Wallaby to call PhantomJS in order to test the rendering of the page. This page contains Javascript that changes the visibility of some content. The tests are working/passing on my machine (I tried both mix test
directly and the use of the CircleCI CLI with circleci local execute --job build
). Unfortunately, the tests are not passing on CircleCI and I cannot find why.
I have implemented a minimal application reproducing this problem: https://github.com/jpagex/phantomjs-circleci-example. It is working in local but not on CircleCI.
Any idea how to make the test work on the CI?
Thank you very much for your help. Feel free to ask if you have any question.