Build failing with timeout after changing the way to open external browser in tests

Hi,

I changed the way to open external browser from my VS Code extension.
I switched from using opn to using the internal dedicated VS Code API.
With opn, the build is working fine.
With VS Code API, the tests are still passing but at the end the build stays blocked and it finally timeout.
I’m unable to reproduce the issue locally.
I tried to specify Chrome and Firefox addons with same results.
What can cause Travis to not go to the next step of the build? finish the build? How to investigate on that?

regards,

failing build:
https://travis-ci.org/jboss-fuse/vscode-atlasmap/builds/495887396

slight modification of my code:

Might be worth adding the following to your .travis.yml to see if builds, then we can go about a more verbose way to figuring out what’s causing the stall.

travis_wait 20

Give that a try, and see what your results are. You may want to add an verbose flag to the YAML file too, it will give you more information.

-Montana (Travis CI Staff)