From 0488740840c931eaf121574740a81b14369057cb Mon Sep 17 00:00:00 2001 From: inga Date: Wed, 8 May 2024 14:36:23 +0200 Subject: [PATCH] refactor: remove unit test --- .../dialog/dialog.component.spec.ts | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 libs/sketch/src/lib/components/dialog/dialog.component.spec.ts diff --git a/libs/sketch/src/lib/components/dialog/dialog.component.spec.ts b/libs/sketch/src/lib/components/dialog/dialog.component.spec.ts deleted file mode 100644 index 124e351..0000000 --- a/libs/sketch/src/lib/components/dialog/dialog.component.spec.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; -import { DialogComponent } from './dialog.component'; - -describe('DialogComponent', () => { - let component: DialogComponent; - let fixture: ComponentFixture; - - beforeEach(async () => { - await TestBed.configureTestingModule({ - imports: [DialogComponent], - }).compileComponents(); - - fixture = TestBed.createComponent(DialogComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -});