Skip to content

Commit

Permalink
Fixed unit test error
Browse files Browse the repository at this point in the history
  • Loading branch information
mjtravers committed Jun 10, 2024
1 parent efb6e77 commit 3837d0b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { OverlayPanelModule } from 'primeng/overlaypanel';
import { TableActionsButtonComponent } from './table-actions-button.component';
import { Button, ButtonModule } from 'primeng/button';
import { ButtonModule } from 'primeng/button';
import { TableAction } from '../table-list-base/table-list-base.component';
import { Report, ReportStatus } from '../../models/report.model';

Expand All @@ -12,7 +12,7 @@ describe('TableActionsButtonComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [OverlayPanelModule, ButtonModule],
declarations: [TableActionsButtonComponent, Button],
declarations: [TableActionsButtonComponent],
providers: [],
}).compileComponents();
});
Expand Down

0 comments on commit 3837d0b

Please sign in to comment.