From b96f5b84781e6be16128d259501ad24fcefef28a Mon Sep 17 00:00:00 2001 From: Husan Abdigafurov Date: Thu, 8 May 2025 23:24:30 +0500 Subject: [PATCH 1/2] Update index.test.ts missing 'synchronizeBalance' in test case description --- src/04-test-class/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/04-test-class/index.test.ts b/src/04-test-class/index.test.ts index 937490d82..507b39829 100644 --- a/src/04-test-class/index.test.ts +++ b/src/04-test-class/index.test.ts @@ -34,7 +34,7 @@ describe('BankAccount', () => { // Write your tests here }); - test('should set new balance if fetchBalance returned number', async () => { + test('synchronizeBalance should set new balance if fetchBalance returned number', async () => { // Write your tests here }); From 0cba8a686027c850d61261b29c35dffc76e21113 Mon Sep 17 00:00:00 2001 From: Husan Abdigafurov Date: Thu, 8 May 2025 23:29:57 +0500 Subject: [PATCH 2/2] Update index.test.ts add 'synchronizeBalance' for last test case description --- src/04-test-class/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/04-test-class/index.test.ts b/src/04-test-class/index.test.ts index 507b39829..f38ff95a6 100644 --- a/src/04-test-class/index.test.ts +++ b/src/04-test-class/index.test.ts @@ -38,7 +38,7 @@ describe('BankAccount', () => { // Write your tests here }); - test('should throw SynchronizationFailedError if fetchBalance returned null', async () => { + test('synchronizeBalance should throw SynchronizationFailedError if fetchBalance returned null', async () => { // Write your tests here }); });