Skip to content

Commit 67e6ced

Browse files
committed
Fix linting issues
1 parent d841a94 commit 67e6ced

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/lib/utils/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ describe('getComputedProperties', () => {
266266

267267
assert.notOk(node.type)
268268
assert.notOk(node.node)
269-
assert.equal(node.props.length,0)
269+
assert.equal(node.props.length, 0)
270270
})
271271

272272
it('should return computed props', () => {
@@ -286,7 +286,7 @@ describe('getComputedProperties', () => {
286286

287287
assert.ok(node.node)
288288
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')
290290

291291
assert.ok(node.props[0].value)
292292
assert.ok(node.props[0].key.type === 'Identifier')
@@ -319,7 +319,7 @@ describe('getComputedProperties', () => {
319319

320320
assert.ok(node.node)
321321
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')
323323

324324
assert.notOk(node.props[0].value)
325325
assert.ok(node.props[0].key.type === 'Literal')

0 commit comments

Comments
 (0)