24 lines
617 B
TypeScript
24 lines
617 B
TypeScript
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
|
|
|
import {FooterComponent} from './footer.component';
|
|
|
|
describe('FooterComponent', (): void => {
|
|
let component: FooterComponent;
|
|
let fixture: ComponentFixture<FooterComponent>;
|
|
|
|
beforeEach(async (): Promise<void> => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [FooterComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(FooterComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', (): void => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|