import type { ComponentFixture } from '@angular/core/testing' import { TestBed } from '@angular/core/testing' import { CounterComponent } from './counter.component' describe('CounterComponent', () => { let component: CounterComponent let fixture: ComponentFixture beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [CounterComponent], }).compileComponents() }) beforeEach(() => { fixture = TestBed.createComponent(CounterComponent) component = fixture.componentInstance fixture.detectChanges() }) it('should create', () => { expect(component).toBeTruthy() }) })