la-belle-plante/src/app/pages/page-details/page-details.component.spec.ts
2021-12-15 16:10:58 +01:00

25 lines
662 B
TypeScript

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