Skip to content

Commit 12de840

Browse files
committed
Shorten test case names to satisfy lint rules
1 parent 2b56977 commit 12de840

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-dom/src/events/__tests__/BeforeInputEventPlugin-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)