Skip to content

Commit

Permalink
fix test module import
Browse files Browse the repository at this point in the history
  • Loading branch information
lukavdplas committed Aug 5, 2024
1 parent ac9f3ea commit 18d8f6b
Showing 1 changed file with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ActionButtonGroupComponent } from './action-button-group.component';
import { SharedTestingModule } from '@shared/shared-testing.module';

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

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ActionButtonGroupComponent]
beforeEach(() => {
TestBed.configureTestingModule({
imports: [SharedTestingModule]
});
fixture = TestBed.createComponent(ActionButtonGroupComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
fixture = TestBed.createComponent(ActionButtonGroupComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

0 comments on commit 18d8f6b

Please sign in to comment.