Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable mention intermittent failed cases #2403

Merged
merged 11 commits into from
Oct 14, 2024
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Re-enable mention intermittently failed test cases",
"packageName": "@ni/nimble-components",
"email": "123377167+aagash-ni@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -1542,8 +1542,8 @@ describe('RichTextEditorMentionListbox', () => {
expect(pageObject.isMentionListboxOpened()).toBeTrue();
});

// Intermittent, see https://github.com/ni/nimble/issues/2219
xit('should show mention popup for multiple mention configuration elements', async () => {
// Firefox skipped, see https://github.com/ni/nimble/issues/2404
it('should show mention popup for multiple mention configuration elements #SkipFirefox', async () => {
rajsite marked this conversation as resolved.
Show resolved Hide resolved
await appendUserMentionConfiguration(element, [
{ key: 'user:1', displayName: 'username1' },
{ key: 'user:2', displayName: 'username2' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,8 @@ Plain text 3`);
<user:1> `);
});

// Intermittent, see https://github.com/ni/nimble/issues/2219
xit('Mention node', async () => {
// Firefox skipped, see https://github.com/ni/nimble/issues/2404
it('Mention node #SkipFirefox', async () => {
await appendUserMentionConfiguration(element, [
{ key: 'user:1', displayName: 'username1' }
]);
Expand Down