Skip to content

Commit 7d1b725

Browse files
Fix ts errors
1 parent d133c4d commit 7d1b725

File tree

1 file changed

+8
-20
lines changed

1 file changed

+8
-20
lines changed

packages/loot-core/src/server/api.test.ts

+8-20
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,28 @@
11
import { installAPI } from './api';
22
import { getBankSyncError } from '../shared/errors';
3+
import { ServerHandlers } from '../types/server-handlers';
34

45
jest.mock('../shared/errors', () => ({
56
getBankSyncError: jest.fn(error => `Bank sync error: ${error}`),
67
}));
78

89
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);
2711

2812
describe('api/bank-sync', () => {
2913
it('should sync a single account when accountId is provided', async () => {
14+
handlers['accounts-bank-sync'] = jest
15+
.fn()
16+
.mockResolvedValue({ errors: [] });
17+
3018
await handlers['api/bank-sync']({ accountId: 'account1' });
31-
expect(mockServerHandlers['accounts-bank-sync']).toHaveBeenCalledWith({
19+
expect(handlers['accounts-bank-sync']).toHaveBeenCalledWith({
3220
ids: ['account1'],
3321
});
3422
});
3523

3624
it('should handle errors in non batch sync', async () => {
37-
mockServerHandlers['accounts-bank-sync'].mockResolvedValue({
25+
handlers['accounts-bank-sync'] = jest.fn().mockResolvedValue({
3826
errors: ['connection-failed'],
3927
});
4028

0 commit comments

Comments
 (0)