diff --git a/src/components/FileLink/__tests__/FileLink.test.tsx b/src/components/FileLink/__tests__/FileLink.test.tsx index 74f6d480b..838e37941 100644 --- a/src/components/FileLink/__tests__/FileLink.test.tsx +++ b/src/components/FileLink/__tests__/FileLink.test.tsx @@ -14,7 +14,7 @@ const fileLink = { }; const TYPES: Array = ['horizontal', 'vertical']; -const TEXT_SIZRS: Array = ['s', 'xs', 'm', 'l']; +const TEXT_SIZES: Array = ['s', 'xs', 'm', 'l']; const THEMES: Array = ['default', 'dark', 'light']; const qaAttributes = getQaAttrubutes(fileLink.qa, 'link', 'link-container'); @@ -49,7 +49,7 @@ describe('FileLink', () => { expect(cardBase).toHaveClass(`pc-file-link_type_${type}`); }); - test.each(new Array(...TEXT_SIZRS))( + test.each(new Array(...TEXT_SIZES))( 'render with given "%s" textSize', (textSize) => { render();