Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccollum-woolpert committed Feb 5, 2024
1 parent b8782b1 commit d8b2dc6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { CsvHelpDialogComponent } from './csv-help-dialog.component';
import { MatDialogRef } from '@angular/material/dialog';

describe('CsvHelpDialogComponent', () => {
let component: CsvHelpDialogComponent;
Expand All @@ -18,6 +19,9 @@ describe('CsvHelpDialogComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [CsvHelpDialogComponent],
providers: [
{ provide: MatDialogRef, useValue: {} },
]
}).compileComponents();

fixture = TestBed.createComponent(CsvHelpDialogComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ScenarioSolutionHelpDialogComponent } from './scenario-solution-help-dialog.component';
import { MatDialogRef } from '@angular/material/dialog';

describe('ScenarioSolutionHelpDialogComponent', () => {
let component: ScenarioSolutionHelpDialogComponent;
Expand All @@ -18,6 +19,9 @@ describe('ScenarioSolutionHelpDialogComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ScenarioSolutionHelpDialogComponent],
providers: [
{ provide: MatDialogRef, useValue: {} },
]
}).compileComponents();

fixture = TestBed.createComponent(ScenarioSolutionHelpDialogComponent);
Expand Down

0 comments on commit d8b2dc6

Please sign in to comment.