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