From c45ef7c2f3c37693fe2e671c6f74c7db0b34d7d4 Mon Sep 17 00:00:00 2001 From: CyberT33N Date: Thu, 10 Oct 2024 16:21:55 +0200 Subject: [PATCH] feat(CCS-001): updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db3cdfd..118d677 100644 --- a/README.md +++ b/README.md @@ -294,7 +294,7 @@ describe('Any test block', () => { assert.fail('This line should not be reached') } catch (err) { if (err instanceof BaseError) { - const typedErr: BaseError = err + const typedErr = err expect(typedErr.error).toEqual(error) expect(typedErr.message).toBe(errMsg)