chore: remove FF bug todo from test

PiperOrigin-RevId: 608762761
This commit is contained in:
Elizabeth Mitchell 2024-02-20 15:32:34 -08:00 committed by Copybara-Service
parent 9e2cea5073
commit 54872bdbdf

View File

@ -41,8 +41,8 @@ describe('<md-radio>', () => {
async function simulateKeyDown(element: HTMLElement, key: string) {
const event = new KeyboardEvent('keydown', {key, bubbles: true});
element.dispatchEvent(event);
// TODO(https://bugzilla.mozilla.org/show_bug.cgi?id=1804576)
// Remove delay when issue addressed.
// We can remove the delay when FF issue addressed:
// https://bugzilla.mozilla.org/show_bug.cgi?id=1804576
await env.waitForStability();
}