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.
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.
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.