Skip to content

Commit 09de44f

Browse files
committed
add 'test' property to branch
1 parent 6ea6684 commit 09de44f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Context.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,11 @@ Context.prototype.pushWait = function(duration) {
6161
});
6262
};
6363

64-
Context.prototype.branchTo = function(id) {
64+
Context.prototype.branchTo = function(id, test) {
6565
this.pushToBranch({
6666
type: "branch",
67-
id: id
67+
id: id,
68+
test: test
6869
});
6970
this.currentBranch = id;
7071
};

0 commit comments

Comments
 (0)