scenarioo / scenarioo-js

Scenarioo writer library to produce feature rich e2e test reports, e.g. from Protractor/WebDriverJS tests with Jasmine
http://www.scenarioo.org
MIT License
10 stars 3 forks source link

Support more test statuses / all jasmine statuses #20

Closed bruderol closed 8 years ago

bruderol commented 8 years ago

We should not map the usual jasmine test outcome statuses, but support all the statuses that jasmine distinguishes and allow scenarioo to write other application-specific statuses.

Current mapping in jasmine.js:

var map = { pending: scenariooReporter.SKIPPED, disabled: scenariooReporter.SKIPPED, passed: scenariooReporter.SUCCESS, failed: scenariooReporter.FAILED };

Only the "passed" status should be mapped to "success". All other statuses should be supported such that we can distinguish between pending and disabled.

Also we have to allow in ScenariooJS to write other additional statuses, if somebody wants to do this.

bruderol commented 8 years ago

done