From 938772dae997dcd1b080c8fa276d2e4bc29c9f59 Mon Sep 17 00:00:00 2001 From: Martin Maul Date: Thu, 25 Jan 2024 16:09:41 +0100 Subject: [PATCH] feature(publish): #535 remove test focus --- .../modules/page/parts/presentation/parts.component.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/modules/page/parts/presentation/parts.component.spec.ts b/frontend/src/app/modules/page/parts/presentation/parts.component.spec.ts index d59fc6c0d9..56b0dc8c0e 100644 --- a/frontend/src/app/modules/page/parts/presentation/parts.component.spec.ts +++ b/frontend/src/app/modules/page/parts/presentation/parts.component.spec.ts @@ -323,7 +323,7 @@ describe('Parts', () => { }); - fit('should show success toast and refresh parts on successful publish', async() => { + it('should show success toast and refresh parts on successful publish', async() => { const { fixture } = await renderParts(); const { componentInstance } = fixture; const partsFacade = (componentInstance as any)['partsFacade']; @@ -339,7 +339,7 @@ describe('Parts', () => { expect(partsFacade.setPartsAsPlanned).toHaveBeenCalled(); }); - fit('should show error toast and not refresh parts on failed publish', async () => { + it('should show error toast and not refresh parts on failed publish', async () => { const { fixture } = await renderParts(); const { componentInstance } = fixture; const partsFacade = (componentInstance as any)['partsFacade'];