Recently, I've been diving into the world of mocha and Saucelabs, but it seems like I might be making a beginner's mistake.
Everything runs smoothly when I test in my browser or through a manual session on Saucelabs. However, when I try to run them using the REST interface, they end up timing out. Despite the screen capture showing that all tests passed successfully, Sauce Labs doesn't seem to acknowledge it.
The command I used for the REST interface was:
curl \ -X POST \ -u gbthr:00000000-0000-0000-0000-000000000000 \ -H 'Content-Type: application/json' \ --data '{ "platforms": [ ["Linux", "googlechrome", ""]], "url": "", "framework": "mocha"}'
I made sure to replace those 0000's with my own id.
Could there be an extra step I'm missing in my test setup to properly notify Saucelabs?