Files
barker/bookie/src/app/header-footer/header-footer.component.spec.ts

25 lines
679 B
TypeScript

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