Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Dymel committed Dec 20, 2023
1 parent fe0a31f commit 89fc982
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/Service/Import/import-domain-story.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { DomainConfiguration } from '../../Domain/Common/domainConfiguration';
import { INITIAL_DOMAIN_NAME } from '../../Domain/Common/constants';
import { Dictionary } from '../../Domain/Common/dictionary/dictionary';
import { elementTypes } from '../../Domain/Common/elementTypes';
import { MatSnackBar } from '@angular/material/snack-bar';

describe('ImportDomainStoryService', () => {
let service: ImportDomainStoryService;
Expand Down Expand Up @@ -51,6 +52,10 @@ describe('ImportDomainStoryService', () => {
provide: DialogService,
useValue: MockService(DialogService),
},
{
provide: MatSnackBar,
useValue: MockService(MatSnackBar),
},
],
});
iconDictionarySpy = TestBed.inject(
Expand Down

0 comments on commit 89fc982

Please sign in to comment.