From 4e2f4ffdcb3f74e7d01615ac0ec1b93195fd84ef Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 5 Mar 2026 19:00:42 +0000 Subject: [PATCH] [AI] Replace test() with it() to follow repo convention Co-authored-by: Matiss Janis Aboltins --- .../loot-core/src/server/accounts/app-bank-sync.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/loot-core/src/server/accounts/app-bank-sync.test.ts b/packages/loot-core/src/server/accounts/app-bank-sync.test.ts index 28a9eeec04..0faefddee7 100644 --- a/packages/loot-core/src/server/accounts/app-bank-sync.test.ts +++ b/packages/loot-core/src/server/accounts/app-bank-sync.test.ts @@ -46,7 +46,7 @@ beforeEach(async () => { describe('simpleFinBatchSync', () => { describe('when batch sync throws an error', () => { - test('each account gets its own isolated errors array', async () => { + it('each account gets its own isolated errors array', async () => { await setupSimpleFinAccounts([ { id: 'acct1', name: 'Checking', accountId: 'ext-1' }, { id: 'acct2', name: 'Savings', accountId: 'ext-2' }, @@ -72,7 +72,7 @@ describe('simpleFinBatchSync', () => { expect(result[2].res.errors).toHaveLength(1); }); - test('each error references its own account', async () => { + it('each error references its own account', async () => { await setupSimpleFinAccounts([ { id: 'acct1', name: 'Checking', accountId: 'ext-1' }, { id: 'acct2', name: 'Savings', accountId: 'ext-2' }, @@ -96,7 +96,7 @@ describe('simpleFinBatchSync', () => { }); describe('when individual accounts have errors in the response', () => { - test('per-account error_code only affects that account', async () => { + it('per-account error_code only affects that account', async () => { await setupSimpleFinAccounts([ { id: 'acct1', name: 'Checking', accountId: 'ext-1' }, { id: 'acct2', name: 'Savings', accountId: 'ext-2' },