From f137497d0b319af80f835f345a336b13f6799fab Mon Sep 17 00:00:00 2001 From: Riad Benguella Date: Wed, 24 Oct 2018 12:01:58 +0100 Subject: [PATCH] ESLint: Avoid focused unit test --- src/app/App.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/App.test.js b/src/app/App.test.js index 0420960f19..35002788a2 100644 --- a/src/app/App.test.js +++ b/src/app/App.test.js @@ -14,7 +14,7 @@ describe( 'App', () => { expect( rendered ).toBeTruthy(); } ); - it.only( 'renders without crashing with a block focused', () => { + it( 'renders without crashing with a block focused', () => { // construct a state object with the first block focused const state = html2State( initialHtml ); const block0 = { ...state.blocks[ 0 ] };