From 058903bd0108b7c04f5f4b557262c55fad98fa75 Mon Sep 17 00:00:00 2001 From: Deborah Date: Thu, 16 May 2024 10:03:54 +0100 Subject: [PATCH] prettier fix --- src/app/components/breadcrumb/breadcrumb.spec.ts | 2 +- src/app/components/inputswitch/inputswitch.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/breadcrumb/breadcrumb.spec.ts b/src/app/components/breadcrumb/breadcrumb.spec.ts index 1c59479ce03..c1e257aa211 100755 --- a/src/app/components/breadcrumb/breadcrumb.spec.ts +++ b/src/app/components/breadcrumb/breadcrumb.spec.ts @@ -5,7 +5,7 @@ import { NoopAnimationsModule } from '@angular/platform-browser/animations'; import { RouterTestingModule } from '@angular/router/testing'; import { NO_ERRORS_SCHEMA } from '@angular/core'; -fdescribe('Breadcrumb', () => { +describe('Breadcrumb', () => { let breadcrumb: Breadcrumb; let fixture: ComponentFixture; diff --git a/src/app/components/inputswitch/inputswitch.spec.ts b/src/app/components/inputswitch/inputswitch.spec.ts index 1eb9cb0b62b..e6c599dcd52 100755 --- a/src/app/components/inputswitch/inputswitch.spec.ts +++ b/src/app/components/inputswitch/inputswitch.spec.ts @@ -142,7 +142,7 @@ describe('InputSwitch', () => { const divElement: HTMLElement = fixture.debugElement.query(By.css('div')).nativeElement; divElement.click(); fixture.detectChanges(); - + expect(onClickSpy).toHaveBeenCalledWith(jasmine.anything()); const initialModelValue = inputswitch.modelValue;