Context: I have an acceptance test for my ember-cli application, and the test passes just fine in Chrome. However, in phantomjs, my test fails -- the UI doesn\'t get created the
In testem.json add "phantomjs_debug_port": 9000.
testem.json
"phantomjs_debug_port": 9000
While you run your tests visit http://localhost:9000 in your browser and click the long link that shows up.
http://localhost:9000
Source: cssugared