Fix eslint errors
This commit is contained in:
parent
5b3ab651e6
commit
4e41fda93a
87 changed files with 1003 additions and 702 deletions
|
@ -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() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue