@@ -266,7 +266,7 @@ describe('getComputedProperties', () => {
266
266
267
267
assert . notOk ( node . type )
268
268
assert . notOk ( node . node )
269
- assert . equal ( node . props . length , 0 )
269
+ assert . equal ( node . props . length , 0 )
270
270
} )
271
271
272
272
it ( 'should return computed props' , ( ) => {
@@ -286,7 +286,7 @@ describe('getComputedProperties', () => {
286
286
287
287
assert . ok ( node . node )
288
288
assert . equal ( node . type , 'ObjectExpression' , 'it detects correct type' )
289
- assert . equal ( node . props . length , 4 , 'it detects all props' )
289
+ assert . equal ( node . props . length , 4 , 'it detects all props' )
290
290
291
291
assert . ok ( node . props [ 0 ] . value )
292
292
assert . ok ( node . props [ 0 ] . key . type === 'Identifier' )
@@ -319,7 +319,7 @@ describe('getComputedProperties', () => {
319
319
320
320
assert . ok ( node . node )
321
321
assert . equal ( node . type , 'ArrayExpression' , 'it detects correct type' )
322
- assert . equal ( node . props . length , 1 , 'it detects all props' )
322
+ assert . equal ( node . props . length , 1 , 'it detects all props' )
323
323
324
324
assert . notOk ( node . props [ 0 ] . value )
325
325
assert . ok ( node . props [ 0 ] . key . type === 'Literal' )
0 commit comments