From 217d3e59c46ac20873d311c36caf7ca695f7b353 Mon Sep 17 00:00:00 2001 From: Diego Landa Date: Thu, 27 Apr 2017 10:48:15 -0400 Subject: [PATCH] Fixed test name --- src/__tests__/parser.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__tests__/parser.spec.ts b/src/__tests__/parser.spec.ts index 7aa146b8..e038a197 100644 --- a/src/__tests__/parser.spec.ts +++ b/src/__tests__/parser.spec.ts @@ -120,7 +120,7 @@ describe('parser', () => { assert.equal(true, i.members[3].isRequired); }); - it('Should should avoid exported objects', () => { + it('Should avoid parsing exported objects as components', () => { const fileName = path.join(__dirname, '../../src/__tests__/data/ConstExport.tsx'); // it's running in ./temp const result = getDocumentation(fileName); assert.ok(result.classes);