Skip to content

Commit

Permalink
fix(frontend): update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pYassine committed Dec 12, 2024
1 parent 79408fc commit 5aac576
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { StoreModule } from "@ngrx/store";
import { APP_BASE_HREF } from "@angular/common";
import { CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
import { UsagersFilterCriteria } from "../usager-filter";
import { Subject } from "rxjs";

describe("ManageUsagersTableComponent", () => {
let component: ManageUsagersTableComponent;
Expand All @@ -33,6 +34,7 @@ describe("ManageUsagersTableComponent", () => {
fixture = TestBed.createComponent(ManageUsagersTableComponent);
component = fixture.componentInstance;
component.filters = new UsagersFilterCriteria();
component.filters$ = new Subject();
fixture.detectChanges();
});

Expand Down

0 comments on commit 5aac576

Please sign in to comment.