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