Fix lint errors

This commit is contained in:
Joel Jeremy Marquez
2026-03-20 16:28:01 -07:00
parent 1598b6ae81
commit 6494d8ef4e

View File

@@ -17,16 +17,20 @@ describe('API app', () => {
); );
await apiApp['api/bank-sync']({ accountId: 'account1' }); await apiApp['api/bank-sync']({ accountId: 'account1' });
expect(mainApp.runHandler).toHaveBeenCalledWith('accounts-bank-sync', { expect(mainApp.runHandler.bind(mainApp)).toHaveBeenCalledWith(
ids: ['account1'], 'accounts-bank-sync',
}); {
ids: ['account1'],
},
);
}); });
it('should throw an error when bank sync fails', async () => { it('should throw an error when bank sync fails', async () => {
vi.spyOn(mainApp, 'runHandler').mockImplementation( vi.spyOn(mainApp, 'runHandler').mockImplementation(
async (name: string) => { async (name: string) => {
if (name === 'accounts-bank-sync') if (name === 'accounts-bank-sync') {
return { errors: [{ message: 'connection-failed' }] }; return { errors: [{ message: 'connection-failed' }] };
}
throw new Error(`Unexpected handler: ${name}`); throw new Error(`Unexpected handler: ${name}`);
}, },
); );