From 9cf69ba32d07a7418d40f34785af6dc95af8ce38 Mon Sep 17 00:00:00 2001 From: Yasa-Nataliya Date: Fri, 22 Sep 2023 09:57:33 +0530 Subject: [PATCH] [ACS-5540]Implemented the changes as per the review comments --- projects/aca-shared/rules/src/navigation.rules.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/aca-shared/rules/src/navigation.rules.spec.ts b/projects/aca-shared/rules/src/navigation.rules.spec.ts index 5f7941f177..44f43e8e7f 100644 --- a/projects/aca-shared/rules/src/navigation.rules.spec.ts +++ b/projects/aca-shared/rules/src/navigation.rules.spec.ts @@ -226,7 +226,7 @@ describe('navigation.evaluators', () => { }); describe('isDetails', () => { - it('should return [true] if url ends with `/details`', () => { + it('should return true if url ends with `/details`', () => { const context: any = { navigation: { url: '/path/details' @@ -236,7 +236,7 @@ describe('navigation.evaluators', () => { expect(app.isDetails(context)).toBe(true); }); - it('should return [true] if url starts with `/details`', () => { + it('should return true if url starts with `/details`', () => { const context: any = { navigation: { url: '/details/path' @@ -246,7 +246,7 @@ describe('navigation.evaluators', () => { expect(app.isDetails(context)).toBe(true); }); - it('should return [true] if url includes with `/details`', () => { + it('should return true if url includes with `/details`', () => { const context: any = { navigation: { url: '/details/path'