2025-02-24 18:10:29 -05:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
|
|
import { FooterComponent } from './footer.component';
|
|
|
|
|
|
|
|
|
|
describe('FooterComponent', () => {
|
|
|
|
|
let component: FooterComponent;
|
|
|
|
|
let fixture: ComponentFixture<FooterComponent>;
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await TestBed.configureTestingModule({
|
2025-02-24 18:14:59 -05:00
|
|
|
imports: [FooterComponent],
|
|
|
|
|
}).compileComponents();
|
2025-02-24 18:10:29 -05:00
|
|
|
|
|
|
|
|
fixture = TestBed.createComponent(FooterComponent);
|
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|