From ce0e3421149baf05f453f256d5a5ebce40c662c4 Mon Sep 17 00:00:00 2001 From: Tomasz Niezgoda Date: Wed, 28 Feb 2018 14:12:23 +0100 Subject: [PATCH] Added missing key prop to NoTests component. --- addons/jest/src/components/Panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/jest/src/components/Panel.js b/addons/jest/src/components/Panel.js index 9c277c3c101e..245d63743b29 100644 --- a/addons/jest/src/components/Panel.js +++ b/addons/jest/src/components/Panel.js @@ -98,7 +98,7 @@ const Content = glamorous(({ tests, className }) => (
{tests.map(({ name, result }) => { if (!result) { - return This story has tests configured, but no file was found; + return This story has tests configured, but no file was found; } const successNumber = result.assertionResults.filter(({ status }) => status === 'passed')