Convert SyntheticWheelEvent-test.js to createRoot (#28103)

This commit is contained in:
Matt Carroll
2024-01-26 03:05:08 -05:00
committed by GitHub
parent 9bad8ed9a6
commit fbb21066a2
@@ -10,18 +10,22 @@
'use strict';
let React;
let ReactDOM;
let ReactDOMClient;
let act;
describe('SyntheticWheelEvent', () => {
let container;
let root;
beforeEach(() => {
React = require('react');
ReactDOM = require('react-dom');
ReactDOMClient = require('react-dom/client');
act = require('internal-test-utils').act;
// The container has to be attached for events to fire.
container = document.createElement('div');
document.body.appendChild(container);
root = ReactDOMClient.createRoot(container);
});
afterEach(() => {
@@ -29,13 +33,15 @@ describe('SyntheticWheelEvent', () => {
container = null;
});
it('should normalize properties from the MouseEvent interface', () => {
it('should normalize properties from the MouseEvent interface', async () => {
const events = [];
const onWheel = event => {
event.persist();
events.push(event);
};
ReactDOM.render(<div onWheel={onWheel} />, container);
await act(async () => {
root.render(<div onWheel={onWheel} />);
});
container.firstChild.dispatchEvent(
new MouseEvent('wheel', {
@@ -48,13 +54,16 @@ describe('SyntheticWheelEvent', () => {
expect(events[0].button).toBe(1);
});
it('should normalize properties from the WheelEvent interface', () => {
it('should normalize properties from the WheelEvent interface', async () => {
const events = [];
const onWheel = event => {
event.persist();
events.push(event);
};
ReactDOM.render(<div onWheel={onWheel} />, container);
await act(async () => {
root.render(<div onWheel={onWheel} />);
});
let event = new MouseEvent('wheel', {
bubbles: true,
@@ -83,7 +92,7 @@ describe('SyntheticWheelEvent', () => {
expect(events[1].deltaY).toBe(-50);
});
it('should be able to `preventDefault` and `stopPropagation`', () => {
it('should be able to `preventDefault` and `stopPropagation`', async () => {
const events = [];
const onWheel = event => {
expect(event.isDefaultPrevented()).toBe(false);
@@ -92,7 +101,9 @@ describe('SyntheticWheelEvent', () => {
event.persist();
events.push(event);
};
ReactDOM.render(<div onWheel={onWheel} />, container);
await act(async () => {
root.render(<div onWheel={onWheel} />);
});
container.firstChild.dispatchEvent(
new MouseEvent('wheel', {
@@ -111,5 +122,6 @@ describe('SyntheticWheelEvent', () => {
);
expect(events.length).toBe(2);
expect.assertions(5);
});
});