Lint
This commit is contained in:
parent
94f9c0d594
commit
5c3b87f2d5
69 changed files with 1334 additions and 213 deletions
|
|
@ -64,9 +64,7 @@ describe('useMapData', () => {
|
|||
);
|
||||
|
||||
await act(async () => {
|
||||
result.current.handleViewChange(
|
||||
viewChange({ south: 1, west: 1, north: 2, east: 2 })
|
||||
);
|
||||
result.current.handleViewChange(viewChange({ south: 1, west: 1, north: 2, east: 2 }));
|
||||
});
|
||||
await act(async () => {
|
||||
vi.advanceTimersByTime(150);
|
||||
|
|
@ -74,9 +72,7 @@ describe('useMapData', () => {
|
|||
expect(requests).toHaveLength(1);
|
||||
|
||||
await act(async () => {
|
||||
result.current.handleViewChange(
|
||||
viewChange({ south: 3, west: 3, north: 4, east: 4 })
|
||||
);
|
||||
result.current.handleViewChange(viewChange({ south: 3, west: 3, north: 4, east: 4 }));
|
||||
});
|
||||
|
||||
await act(async () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue