File tree 1 file changed +15
-1
lines changed
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ test('constructor at runtime only', function(t) {
122
122
t . equal ( res , undefined ) ;
123
123
} ) ;
124
124
125
- test ( 'short circuit evaluation' , function ( t ) {
125
+ test ( 'short circuit evaluation AND ' , function ( t ) {
126
126
t . plan ( 1 ) ;
127
127
128
128
var variables = {
@@ -132,4 +132,18 @@ test('short circuit evaluation', function(t) {
132
132
var ast = parse ( src ) . body [ 0 ] . expression ;
133
133
var res = evaluate ( ast , variables ) ;
134
134
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 ) ;
135
149
} )
You can’t perform that action at this time.
0 commit comments