Skip to content

Commit

Permalink
agent form test module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lukavdplas committed Aug 7, 2024
1 parent f6adaad commit 15e915b
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@ import { AgentFormComponent } from './agent-form.component';
import { SharedTestingModule } from '@shared/shared-testing.module';
import { AgentDescriptionFormComponent } from './agent-description-form/agent-description-form.component';
import { AgentIdentificationFormComponent } from './agent-identification-form/agent-identification-form.component';
import { DataEntrySharedModule } from '../shared/data-entry-shared.module';

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

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [AgentFormComponent],
imports: [
SharedTestingModule,
declarations: [
AgentFormComponent,
AgentIdentificationFormComponent,
AgentDescriptionFormComponent,
],
imports: [
SharedTestingModule,
DataEntrySharedModule,
],
});
fixture = TestBed.createComponent(AgentFormComponent);
component = fixture.componentInstance;
Expand Down

0 comments on commit 15e915b

Please sign in to comment.