Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit b28355d

Browse files
committed
fix(cucumber): emit on cucumber scenario instead of step
1 parent 015cafc commit b28355d

File tree

1 file changed

+44
-20
lines changed

1 file changed

+44
-20
lines changed

lib/frameworks/cucumber.js

+44-20
Original file line numberDiff line numberDiff line change
@@ -59,37 +59,61 @@ exports.run = function(runner, specs) {
5959
global.cucumber = Cucumber.Cli(execOptions);
6060

6161
var testResult = [];
62+
var stepResults = {
63+
description: null,
64+
assertions: [],
65+
duration: 0
66+
};
67+
var scenarioFailed = false;
68+
6269
var failedCount = 0;
6370
// Add a listener into cucumber so that protractor can find out which
6471
// steps passed/failed
6572
var addResultListener = function(formatter) {
73+
var originalHandleAfterScenarioEvent = formatter.handleAfterScenarioEvent;
74+
formatter.handleAfterScenarioEvent = function(event, callback) {
75+
var scenario = event.getPayloadItem('scenario');
76+
stepResults.description = scenario.getName();
77+
if (scenarioFailed) {
78+
++failedCount;
79+
runner.emit('testFail');
80+
} else {
81+
runner.emit('testPass');
82+
}
83+
84+
testResult.push(stepResults);
85+
stepResults = {
86+
description: null,
87+
assertions: [],
88+
duration: 0
89+
};
90+
scenarioFailed = false;
91+
92+
if (originalHandleAfterScenarioEvent
93+
&& typeof(originalHandleAfterScenarioEvent) === 'function') {
94+
originalHandleAfterScenarioEvent(event, callback);
95+
} else {
96+
callback();
97+
}
98+
};
99+
66100
var originalHandleStepResultEvent = formatter.handleStepResultEvent;
67101
formatter.handleStepResultEvent = function(event, callback) {
68-
69102
var stepResult = event.getPayloadItem('stepResult');
70103
if (stepResult.isSuccessful()) {
71-
runner.emit('testPass');
72-
testResult.push({
73-
description: stepResult.getStep().getName(),
74-
assertions: [{
75-
passed: true
76-
}],
77-
duration: stepResult.getDuration()
104+
stepResults.assertions.push({
105+
passed: true
78106
});
79-
}
80-
else if (stepResult.isFailed()) {
81-
runner.emit('testFail');
82-
++failedCount;
107+
stepResults.duration += stepResult.getDuration();
108+
} else if (stepResult.isFailed()) {
109+
scenarioFailed = true;
83110
var failureMessage = stepResult.getFailureException();
84-
testResult.push({
85-
description: stepResult.getStep().getName(),
86-
assertions: [{
87-
passed: false,
88-
errorMsg: failureMessage.message,
89-
stackTrace: failureMessage.stack
90-
}],
91-
duration: stepResult.getDuration()
111+
stepResults.assertions.push({
112+
passed: false,
113+
errorMsg: failureMessage.message,
114+
stackTrace: failureMessage.stack
92115
});
116+
stepResults.duration += stepResult.getDuration();
93117
}
94118

95119
if (originalHandleStepResultEvent

0 commit comments

Comments
 (0)