I have an ember-cli
project and all the tests are written using ember-qunit
. I am using browserstack-runner to run the tests on Browserstack.
browserstack-runner provides the plugin for qunit which I am using. Below is my browserstack.json
{
"username": "USERNAME",
"key": "SECRETKEY",
"test_framework" : "qunit",
"test_path": ["tests/index.html"],
"timeout": "120",
"browsers": [
{
"browser": "chrome",
"browser_version": "latest",
"os": "Windows",
"os_version": "7",
"browserstack.debug": true
}
]
}
Tests are running correctly on browserstack. the only problem is, even after all the tests are run(passed) there is no activity and I am getting timeout error after specified value(120s).
I am not able to understand why it's happening. I guess it has something to do with plugin which is written specifically for qunit
and not ember-qunit
, which is a wrapper arount qunit
.
Has anyone tried integrating browserstack
with ember-cli
project then please guide me.