Thank you for this nice library Currently it's possible to trigger a `load` event on a image: Example: ```javascript const { getByTestId, debug } = render(<Stuff/>); fireEvent.load(getByTestId('my-stuff')); expect(stuff).toHaveBeenCalledWith(true); ``` But is there any way to do that with `script` ? Should we implement it here https://github.com/testing-library/dom-testing-library/blob/6c4486c5c290aac515f103314428a9ab2e2873fb/src/__tests__/events.js#L109