Skip to content

Commit

Permalink
test(txns): support the new options keyword for txn tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Apr 18, 2018
1 parent d3411f3 commit 5c2d12c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/functional/transactions_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,11 @@ function testOperation(operation, obj, context) {
return;
}

if (key === 'options') {
Object.assign(opOptions, operation.arguments[key]);
return;
}

opOptions[key] = operation.arguments[key];
});
}
Expand Down

0 comments on commit 5c2d12c

Please sign in to comment.