From d14d834177eb890deb774dec278ef79024af7ca8 Mon Sep 17 00:00:00 2001 From: ThomasL Date: Thu, 13 Jul 2023 16:50:13 +0200 Subject: [PATCH] feat(challenge29): add new test to test the router --- apps/testing-todos-list/src/app/list/list.component.spec.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/testing-todos-list/src/app/list/list.component.spec.ts b/apps/testing-todos-list/src/app/list/list.component.spec.ts index 91e90aa..a03aca8 100644 --- a/apps/testing-todos-list/src/app/list/list.component.spec.ts +++ b/apps/testing-todos-list/src/app/list/list.component.spec.ts @@ -103,4 +103,10 @@ describe('ListComponent', () => { }); }); }); + + describe('When clicking on first ticket', () => { + it('Then we navigate to detail/0', async () => { + // + }); + }); });