Skip to content

Commit

Permalink
chore(isct-63): fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyKIron committed Oct 8, 2023
1 parent f7e2f51 commit 68c9844
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ import {waitForAsync, ComponentFixture, TestBed} from '@angular/core/testing';
import {ModalFooterComponent} from './modal-footer.component';
import {ButtonModule} from '@ironsource/fusion-ui/components/button';
import {IconModule} from '@ironsource/fusion-ui/components/icon/v1';
import {GenericPipe} from "@ironsource/fusion-ui/pipes/generic";

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

beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [ButtonModule, IconModule],
imports: [ButtonModule, IconModule, GenericPipe],
declarations: [ModalFooterComponent]
}).compileComponents();
}));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ import {waitForAsync, ComponentFixture, TestBed} from '@angular/core/testing';
import {ModalHeaderComponent} from './modal-header.component';
import {ButtonModule} from '@ironsource/fusion-ui/components/button';
import {IconModule} from '@ironsource/fusion-ui/components/icon/v1';
import {GenericPipe} from "@ironsource/fusion-ui/pipes/generic";

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

beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [ButtonModule, IconModule],
imports: [ButtonModule, IconModule, GenericPipe],
declarations: [ModalHeaderComponent]
}).compileComponents();
}));
Expand Down

0 comments on commit 68c9844

Please sign in to comment.