Skip to content

Commit

Permalink
Loop count to 10000
Browse files Browse the repository at this point in the history
  • Loading branch information
vivinkrishna-ni committed Oct 3, 2024
1 parent bac5193 commit 1988b66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1549,7 +1549,7 @@ describe('RichTextEditorMentionListbox', () => {
}
);

for (let i = 0; i < 1000; i++) {
for (let i = 0; i < 10000; i++) {
// Intermittent, see https://github.com/ni/nimble/issues/2219
// eslint-disable-next-line no-restricted-globals
fit(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ Plain text 3`);
}
);

for (let i = 0; i < 1000; i++) {
for (let i = 0; i < 10000; i++) {
// Intermittent, see https://github.com/ni/nimble/issues/2219
// eslint-disable-next-line no-restricted-globals
fit('Mention node' + `${i}`, async () => {
Expand Down

0 comments on commit 1988b66

Please sign in to comment.