Fix eslint errors

This commit is contained in:
Eric NGUYEN 2023-02-23 13:54:38 +01:00
parent 5b3ab651e6
commit 4e41fda93a
87 changed files with 1003 additions and 702 deletions

View file

@ -2,16 +2,14 @@ import * as React from 'react';
import { beforeEach, describe, it } from 'vitest';
import { AppState } from '../../Enums/AppState';
import { FAST_BOOT } from '../../utils/default';
import { fireEvent, render, RenderResult } from '../../utils/test-utils';
import { fireEvent, render, type RenderResult } from '../../utils/test-utils';
import { App } from './App';
describe.concurrent('App', () => {
let app: RenderResult;
beforeEach(() => {
app = render(
<App root={document} />
);
app = render(<App root={document} />);
});
it('New editor', async() => {