cic-staff-client/src/app/shared/footer/footer.component.spec.ts

26 lines
643 B
TypeScript

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