|
1 | 1 | import { installAPI } from './api';
|
2 | 2 | import { getBankSyncError } from '../shared/errors';
|
| 3 | +import { ServerHandlers } from '../types/server-handlers'; |
3 | 4 |
|
4 | 5 | jest.mock('../shared/errors', () => ({
|
5 | 6 | getBankSyncError: jest.fn(error => `Bank sync error: ${error}`),
|
6 | 7 | }));
|
7 | 8 |
|
8 | 9 | describe('API handlers', () => {
|
9 |
| - let handlers: Record<string, any>; |
10 |
| - let mockServerHandlers: Record<string, jest.Mock>; |
11 |
| - |
12 |
| - beforeEach(() => { |
13 |
| - jest.clearAllMocks(); |
14 |
| - |
15 |
| - mockServerHandlers = { |
16 |
| - 'accounts-bank-sync': jest.fn().mockResolvedValue({ errors: [] }), |
17 |
| - }; |
18 |
| - |
19 |
| - // Remove the accounts-bank-sync handler if it exists |
20 |
| - // or it won't be replaced by the mock |
21 |
| - if (handlers) { |
22 |
| - delete handlers['accounts-bank-sync']; |
23 |
| - } |
24 |
| - |
25 |
| - handlers = installAPI(mockServerHandlers); |
26 |
| - }); |
| 10 | + const handlers = installAPI({} as unknown as ServerHandlers); |
27 | 11 |
|
28 | 12 | describe('api/bank-sync', () => {
|
29 | 13 | it('should sync a single account when accountId is provided', async () => {
|
| 14 | + handlers['accounts-bank-sync'] = jest |
| 15 | + .fn() |
| 16 | + .mockResolvedValue({ errors: [] }); |
| 17 | + |
30 | 18 | await handlers['api/bank-sync']({ accountId: 'account1' });
|
31 |
| - expect(mockServerHandlers['accounts-bank-sync']).toHaveBeenCalledWith({ |
| 19 | + expect(handlers['accounts-bank-sync']).toHaveBeenCalledWith({ |
32 | 20 | ids: ['account1'],
|
33 | 21 | });
|
34 | 22 | });
|
35 | 23 |
|
36 | 24 | it('should handle errors in non batch sync', async () => {
|
37 |
| - mockServerHandlers['accounts-bank-sync'].mockResolvedValue({ |
| 25 | + handlers['accounts-bank-sync'] = jest.fn().mockResolvedValue({ |
38 | 26 | errors: ['connection-failed'],
|
39 | 27 | });
|
40 | 28 |
|
|
0 commit comments