```html <button disabled="disabled">button</button> ``` ```js await fireEvent.click(btn); const clickEvent = emitted().click; // The following test fail. It SHOULD success. expect(!!clickEvent).toBe(false); ```