Skip to content

Commit

Permalink
Update footer test
Browse files Browse the repository at this point in the history
  • Loading branch information
djvelimir committed May 15, 2024
1 parent 4f3fac1 commit ef4cdc1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/footer/footer.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { FooterComponent } from './footer.component';
import { provideRouter } from '@angular/router';

describe('FooterComponent', () => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [FooterComponent]
imports: [FooterComponent],
providers: [provideRouter([])]
})
.compileComponents();

Expand Down

0 comments on commit ef4cdc1

Please sign in to comment.