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