From 12de840c696e8fbbf84dfe004da143e6856bce22 Mon Sep 17 00:00:00 2001 From: Gordon Dent Date: Sat, 27 Jan 2018 23:49:59 -0800 Subject: [PATCH] Shorten test case names to satisfy lint rules --- .../src/events/__tests__/BeforeInputEventPlugin-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react-dom/src/events/__tests__/BeforeInputEventPlugin-test.js b/packages/react-dom/src/events/__tests__/BeforeInputEventPlugin-test.js index a6a41f1877104..176d83c3e35b4 100644 --- a/packages/react-dom/src/events/__tests__/BeforeInputEventPlugin-test.js +++ b/packages/react-dom/src/events/__tests__/BeforeInputEventPlugin-test.js @@ -750,7 +750,7 @@ describe('BeforeInputEventPlugin', () => { testContentEditableComponent(environments[1], scenarios); }); - it('should extract onBeforeInput when simulating in environment with no CompositionEvent support on input[type=text]', () => { + it('should extract onBeforeInput when simulating in env with no CompositionEvent on input[type=text]', () => { testInputComponent(environments[2], scenarios); }); @@ -758,11 +758,11 @@ describe('BeforeInputEventPlugin', () => { // as expected on a contenteditable as keydown and keyup events are translated // to keypress events - it('should extract onBeforeInput when simulating in environment with only CompositionEvent support on input[type=text]', () => { + it('should extract onBeforeInput when simulating in env with only CompositionEvent on input[type=text]', () => { testInputComponent(environments[3], scenarios); }); - it('should extract onBeforeInput when simulating in environment with only CompositionEvent support on contenteditable', () => { + it('should extract onBeforeInput when simulating in env with only CompositionEvent on contenteditable', () => { testContentEditableComponent(environments[3], scenarios); }); });