Skip to content
Snippets Groups Projects
Unverified Commit 9721ef80 authored by Romeo Van Snick's avatar Romeo Van Snick Committed by GitHub
Browse files

Remove flaky timeout in DelayGroup test (#38593)

* Use greater than to assert timeout has elapsed

* Use fake timers to test delay group
parent 7eb7cd30
No related branches found
No related tags found
No related merge requests found
import userEvent from "@testing-library/user-event";
import { render, screen, waitFor } from "__support__/ui";
import { render, screen, act } from "__support__/ui";
import { DelayGroup, useDelayGroup } from "./DelayGroup";
interface SetupOpts {
......@@ -25,10 +25,13 @@ function Child() {
describe("DelayGroup", () => {
it("should be delayed by default and only remove delay after a timeout", async () => {
const timeout = 50;
jest.useFakeTimers();
const timeout = 500;
setup({ timeout });
const button = screen.getByRole("button");
expect(button).toHaveTextContent("delay: true");
userEvent.hover(button);
......@@ -36,13 +39,13 @@ describe("DelayGroup", () => {
userEvent.unhover(button);
expect(button).toHaveTextContent("delay: false");
const start = Date.now();
await waitFor(function () {
act(function () {
jest.advanceTimersByTime(timeout / 2);
expect(button).toHaveTextContent("delay: false");
jest.advanceTimersByTime(timeout / 2 + 1);
expect(button).toHaveTextContent("delay: true");
});
const elapsed = Date.now() - start;
expect(elapsed).toBeCloseTo(timeout, -1);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment