Update dependency @testing-library/user-event to v14.4.3 (#54292)

* Update dependency @testing-library/user-event to v14.4.3

* use ReturnType instead of using a nested import

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
renovate[bot]
2022-08-26 13:30:34 +01:00
committed by GitHub
parent 91948ce554
commit 6f72c4d10d
12 changed files with 20 additions and 26 deletions

View File

@@ -1,7 +1,6 @@
import { within } from '@testing-library/dom';
import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { UserEvent } from '@testing-library/user-event/dist/types/setup';
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { getGrafanaContextMock } from 'test/mocks/getGrafanaContextMock';
@@ -52,7 +51,7 @@ function setup() {
}
describe('VersionSettings', () => {
let user: UserEvent;
let user: ReturnType<typeof userEvent.setup>;
beforeEach(() => {
// Need to use delay: null here to work with fakeTimers

View File

@@ -1,6 +1,5 @@
import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { UserEvent } from '@testing-library/user-event/dist/types/setup';
import React from 'react';
import * as runtime from '@grafana/runtime';
@@ -105,7 +104,7 @@ describe('VariablesUnknownTable', () => {
});
describe('but when the unknown processing takes a while', () => {
let user: UserEvent;
let user: ReturnType<typeof userEvent.setup>;
beforeEach(() => {
jest.useFakeTimers();

View File

@@ -1,6 +1,5 @@
import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { UserEvent } from '@testing-library/user-event/dist/types/setup';
import React from 'react';
import { of } from 'rxjs';
import { createFetchResponse } from 'test/helpers/createFetchResponse';
@@ -70,7 +69,7 @@ describe('SearchForm', () => {
});
describe('SearchForm', () => {
let user: UserEvent;
let user: ReturnType<typeof userEvent.setup>;
let query: JaegerQuery;
let ds: JaegerDatasource;

View File

@@ -1,6 +1,5 @@
import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { UserEvent } from '@testing-library/user-event/dist/types/setup';
import React from 'react';
import { TempoDatasource, TempoQuery } from '../datasource';
@@ -49,7 +48,7 @@ let mockQuery = {
} as TempoQuery;
describe('NativeSearch', () => {
let user: UserEvent;
let user: ReturnType<typeof userEvent.setup>;
beforeEach(() => {
jest.useFakeTimers();