Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
m-akinc committed Oct 2, 2024
1 parent abc15ce commit c5a2b6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import { waitForUpdatesAsync } from '../../../testing/async-helpers';

async function setup(): Promise<Fixture<RichTextEditor>> {
return fixture<RichTextEditor>(
return await fixture<RichTextEditor>(
html`<nimble-rich-text-editor></nimble-rich-text-editor>`
);
}
Expand Down Expand Up @@ -359,7 +359,7 @@ Plain text 3`);
});

// Intermittent on Webkit (at least), see https://github.com/ni/nimble/issues/2426
it('Multiple Mention node of different type #SkipWebkit', async () => {
it('Multiple Mention node of different type #SkipWebkit', async () => {
await appendUserMentionConfiguration(element, [
{ key: 'user:1', displayName: 'username1' }
]);
Expand Down

0 comments on commit c5a2b6c

Please sign in to comment.