Skip to content

Commit c65e1f5

Browse files
committed
Test short circuit eval for OR
1 parent 3eb2207 commit c65e1f5

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

test/eval.js

+15-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ test('constructor at runtime only', function(t) {
122122
t.equal(res, undefined);
123123
});
124124

125-
test('short circuit evaluation', function(t) {
125+
test('short circuit evaluation AND', function(t) {
126126
t.plan(1);
127127

128128
var variables = {
@@ -132,4 +132,18 @@ test('short circuit evaluation', function(t) {
132132
var ast = parse(src).body[0].expression;
133133
var res = evaluate(ast, variables);
134134
t.equals(res, null);
135+
})
136+
137+
test('short circuit evaluation OR', function(t) {
138+
t.plan(1);
139+
140+
var fnInvoked = false;
141+
var variables = {
142+
value: true,
143+
fn: function() { fnInvoked = true}
144+
};
145+
var src = 'value || fn()';
146+
var ast = parse(src).body[0].expression;
147+
evaluate(ast, variables);
148+
t.equals(fnInvoked, false);
135149
})

0 commit comments

Comments
 (0)