File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/react-dom/src/events/__tests__ Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -750,19 +750,19 @@ describe('BeforeInputEventPlugin', () => {
750750 testContentEditableComponent ( environments [ 1 ] , scenarios ) ;
751751 } ) ;
752752
753- it ( 'should extract onBeforeInput when simulating in environment with no CompositionEvent support on input[type=text]' , ( ) => {
753+ it ( 'should extract onBeforeInput when simulating in env with no CompositionEvent on input[type=text]' , ( ) => {
754754 testInputComponent ( environments [ 2 ] , scenarios ) ;
755755 } ) ;
756756
757757 // in an environment using composition fallback onBeforeInput will not work
758758 // as expected on a contenteditable as keydown and keyup events are translated
759759 // to keypress events
760760
761- it ( 'should extract onBeforeInput when simulating in environment with only CompositionEvent support on input[type=text]' , ( ) => {
761+ it ( 'should extract onBeforeInput when simulating in env with only CompositionEvent on input[type=text]' , ( ) => {
762762 testInputComponent ( environments [ 3 ] , scenarios ) ;
763763 } ) ;
764764
765- it ( 'should extract onBeforeInput when simulating in environment with only CompositionEvent support on contenteditable' , ( ) => {
765+ it ( 'should extract onBeforeInput when simulating in env with only CompositionEvent on contenteditable' , ( ) => {
766766 testContentEditableComponent ( environments [ 3 ] , scenarios ) ;
767767 } ) ;
768768} ) ;
You can’t perform that action at this time.
0 commit comments