Skip to content

Commit 34c450c

Browse files
committed
fixes #68. doh support was broken for testsuites with more than one testcase. I prevented the code from overwriting an existing testcase result
1 parent 160150b commit 34c450c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/hub/view/public/inject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ window.$yetify = function (options) {
390390
};
391391

392392
doh._groupStarted = function (group) {
393-
results[group] = {};
393+
results[group] = results[group] || {};
394394
};
395395

396396
doh._groupFinished = function (group, success) {

0 commit comments

Comments
 (0)