Skip to content

Commit

Permalink
pr fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarman committed Oct 23, 2024
1 parent a3ea66e commit 92a0128
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { afterEach, describe, expect, it, vi } from 'vitest';
import userEvent from '@testing-library/user-event';
import { UseQueryResult } from '@tanstack/react-query';

import { render, screen } from 'test/test-utils';
import * as UseGetTask from 'pages/UsersPage/Tasks/api/useGetTask';
import * as UseGetUser from 'api/useGetUser';

import TaskDetail from '../TaskDetail';
import { UseQueryResult } from '@tanstack/react-query';
import { Task } from 'pages/UsersPage/api/useGetUserTasks';
import { userFixture1 } from '__fixtures__/users';
import { todosFixture } from '__fixtures__/todos';

import TaskDetail from '../TaskDetail';

// mock select functions from react-router-dom
const mockNavigate = vi.fn();
vi.mock('react-router-dom', async () => {
Expand Down

0 comments on commit 92a0128

Please sign in to comment.