25 lines
658 B
TypeScript
25 lines
658 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
import { PagesComponent } from './pages.component';
|
|
|
|
describe('PagesComponent', (): void => {
|
|
let component: PagesComponent;
|
|
let fixture: ComponentFixture<PagesComponent>;
|
|
|
|
beforeEach(waitForAsync((): void => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [PagesComponent]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach((): void => {
|
|
fixture = TestBed.createComponent(PagesComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', (): void => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|