Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Uptime] Fix unhandled promise rejection failure #114883

Original file line number Diff line number Diff line change
Expand Up @@ -313,11 +313,11 @@ describe.skip('<CustomFields />', () => {
// resolve errors
fireEvent.click(monitorType);

waitFor(() => {
expect(getByText('http')).toBeInTheDocument();
expect(getByText('tcp')).toBeInTheDocument();
expect(getByText('icmp')).toBeInTheDocument();
expect(queryByText('browser')).not.toBeInTheDocument();
await waitFor(() => {
justinkambic marked this conversation as resolved.
Show resolved Hide resolved
expect(getByText('HTTP')).toBeInTheDocument();
expect(getByText('TCP')).toBeInTheDocument();
expect(getByText('ICMP')).toBeInTheDocument();
expect(queryByText('Browser')).not.toBeInTheDocument();
});
});
});