axemclion / grunt-saucelabs

Grunt task for running all your browser tests using Sauce Labs
MIT License
182 stars 98 forks source link

Mocha expectation messages not relayed #181

Open lilith opened 9 years ago

lilith commented 9 years ago

While we do get pass/fail messages on a per-test basis, the expect/actual difference is not relayed when connecting to IE 6 or 7 (other versions of IE not tested).

Is this by design, or is there a reporter we can configure in order to log this data somewhere?

Our code and configuration, for reference..

Jonahss commented 9 years ago

Can you a send a link to a failing job with this behavior? Your test-reporting code looks ok, do you see the expect/actual differences when running on other browsers?

It could be that the test-reporting code throws a javascript error. Or that another js error on the page interferes with execution.

Try running a Sauce Manual session using those browsers, visit your test pages, open up the js console and look for errors. Also try accessing the global variable window.moachResults

Jonahss commented 9 years ago

Were you ever able to resolve this?