Fix tests imports
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Siklos 2022-08-08 21:54:49 +02:00
parent 900e925531
commit f1e2326073
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import { describe, expect, vi } from 'vitest';
import { describe, expect, it, vi } from 'vitest';
import * as React from 'react';
import { fireEvent, render, screen } from '../../utils/test-utils';
import { ElementsSidebar } from './ElementsSidebar';

View file

@ -1,6 +1,6 @@
import { fireEvent, render, screen } from '@testing-library/react';
import * as React from 'react';
import { describe, it, vi } from 'vitest';
import { expect, describe, it, vi } from 'vitest';
import { Properties } from './Properties';
describe.concurrent('Properties', () => {

View file

@ -1,6 +1,6 @@
import * as React from 'react';
import { describe, test, expect, vi } from 'vitest';
import { findByText, fireEvent, render, screen } from '../../utils/test-utils';
import { describe, it, expect, vi } from 'vitest';
import { fireEvent, render, screen } from '../../utils/test-utils';
import Sidebar from './Sidebar';
describe.concurrent('Sidebar', () => {