diff --git a/test/lib/filter_access.js b/test/lib/filter_access.js index c36e8b962..55a8f500d 100644 --- a/test/lib/filter_access.js +++ b/test/lib/filter_access.js @@ -36,9 +36,9 @@ test('filterAccess explicit public', function (t) { { access: 'protected' }, { foo: 2 }, { access: 'private' }]), - [{ - access: 'public' - }]); + [{ + access: 'public' + }]); t.end(); }); diff --git a/test/lib/flow_doctrine.js b/test/lib/flow_doctrine.js index 2563d63fb..67ce55eaa 100644 --- a/test/lib/flow_doctrine.js +++ b/test/lib/flow_doctrine.js @@ -225,6 +225,7 @@ test('flowDoctrine', function (t) { // TODO: remove all these types t.deepEqual(types, [ 'IntersectionTypeAnnotation', + 'EmptyTypeAnnotation', 'ThisTypeAnnotation', 'TypeofTypeAnnotation' ], 'Type coverage'); diff --git a/test/lib/parsers/polyglot.js b/test/lib/parsers/polyglot.js index b9378271e..028abd122 100644 --- a/test/lib/parsers/polyglot.js +++ b/test/lib/parsers/polyglot.js @@ -27,11 +27,11 @@ test('polyglot', function (t) { description: remark().parse('color'), type: { name: 'number', type: 'NameExpression' } } ], tags: [ { description: null, lineNumber: 2, name: 'hexToUInt32Color', title: 'name' }, - { description: null, lineNumber: 3, name: 'hex', title: 'param', type: { - name: 'string', type: 'NameExpression' - } }, - { description: 'color', lineNumber: 4, title: 'returns', type: { - name: 'number', type: 'NameExpression' - } } ] } ], 'polyglot parser'); + { description: null, lineNumber: 3, name: 'hex', title: 'param', type: { + name: 'string', type: 'NameExpression' + } }, + { description: 'color', lineNumber: 4, title: 'returns', type: { + name: 'number', type: 'NameExpression' + } } ] } ], 'polyglot parser'); t.end(); });