Skip to content

Commit

Permalink
fixed test for #SNRGY-2829
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Aug 31, 2023
1 parent 5f7171d commit c47e9f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/modules/info/dialogs/info/info.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { InfoComponent } from './info.component';
import { InfoDialogComponent } from './info.component';

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

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ InfoComponent ]
declarations: [ InfoDialogComponent ]
})
.compileComponents();

fixture = TestBed.createComponent(InfoComponent);
fixture = TestBed.createComponent(InfoDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
Expand Down

0 comments on commit c47e9f4

Please sign in to comment.