Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 11f16d3

Browse files
authored
Merge pull request #22354 from atom/flaky-blinking-cursor-spec
Speed up blinking cursor
2 parents fa9dba9 + b2477be commit 11f16d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/text-editor-component-spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,8 @@ describe('TextEditorComponent', () => {
605605
it('blinks cursors when the editor is focused and the cursors are not moving', async () => {
606606
assertDocumentFocused();
607607
const { component, element, editor } = buildComponent();
608-
component.props.cursorBlinkPeriod = 40;
609-
component.props.cursorBlinkResumeDelay = 40;
608+
component.props.cursorBlinkPeriod = 30;
609+
component.props.cursorBlinkResumeDelay = 30;
610610
editor.addCursorAtScreenPosition([1, 0]);
611611

612612
element.focus();

0 commit comments

Comments
 (0)