mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
25 lines
463 B
TypeScript
25 lines
463 B
TypeScript
import '@testing-library/jest-dom';
|
|
import { toast } from 'sonner';
|
|
|
|
jest.mock('sonner', () => ({
|
|
toast: {
|
|
success: jest.fn(),
|
|
error: jest.fn(),
|
|
},
|
|
}));
|
|
|
|
jest.mock('@/actions/update-list', () => ({
|
|
updateList: jest.fn(),
|
|
}));
|
|
|
|
jest.mock('@/actions/delete-list', () => ({
|
|
deleteList: jest.fn(),
|
|
}));
|
|
|
|
jest.mock('@/actions/copy-list', () => ({
|
|
copyList: jest.fn(),
|
|
}));
|
|
|
|
jest.mock('@/actions/update-board', () => ({
|
|
updateBoard: jest.fn(),
|
|
}));
|