From afea9d891db2d61b24fc52256e646b89f4837f6c Mon Sep 17 00:00:00 2001 From: Milan Raj Date: Wed, 26 Jun 2024 18:12:40 -0500 Subject: [PATCH] Disable intermittent RichTextEditorMentionListbox test (#2220) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request ## ๐Ÿคจ Rationale The test `RichTextEditorMentionListbox Dynamically update mention popup items based on configuration changes should show mention popup for multiple mention configuration elements` is intermittent on main and being disabled. See https://github.com/ni/nimble/issues/2219 ## ๐Ÿ‘ฉโ€๐Ÿ’ป Implementation Disabled the test. ## ๐Ÿงช Testing Rely on CI. ## โœ… Checklist - [x] I have updated the project documentation to reflect my changes or determined no changes are needed. --- ...le-components-555e2d1a-b303-4444-94fc-eba40913c8e5.json | 7 +++++++ .../editor/tests/rich-text-editor-mention.spec.ts | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 change/@ni-nimble-components-555e2d1a-b303-4444-94fc-eba40913c8e5.json diff --git a/change/@ni-nimble-components-555e2d1a-b303-4444-94fc-eba40913c8e5.json b/change/@ni-nimble-components-555e2d1a-b303-4444-94fc-eba40913c8e5.json new file mode 100644 index 0000000000..8c84b637de --- /dev/null +++ b/change/@ni-nimble-components-555e2d1a-b303-4444-94fc-eba40913c8e5.json @@ -0,0 +1,7 @@ +{ + "type": "none", + "comment": "disable intermittent test", + "packageName": "@ni/nimble-components", + "email": "rajsite@users.noreply.github.com", + "dependentChangeType": "none" +} diff --git a/packages/nimble-components/src/rich-text/editor/tests/rich-text-editor-mention.spec.ts b/packages/nimble-components/src/rich-text/editor/tests/rich-text-editor-mention.spec.ts index 40839a1bd4..ed468d0deb 100644 --- a/packages/nimble-components/src/rich-text/editor/tests/rich-text-editor-mention.spec.ts +++ b/packages/nimble-components/src/rich-text/editor/tests/rich-text-editor-mention.spec.ts @@ -1542,7 +1542,8 @@ describe('RichTextEditorMentionListbox', () => { expect(pageObject.isMentionListboxOpened()).toBeTrue(); }); - it('should show mention popup for multiple mention configuration elements', async () => { + // Intermittent, see https://github.com/ni/nimble/issues/2219 + xit('should show mention popup for multiple mention configuration elements', async () => { await appendUserMentionConfiguration(element, [ { key: 'user:1', displayName: 'username1' }, { key: 'user:2', displayName: 'username2' }