Skip to content

Commit b984ea7

Browse files
committed
Fix test
1 parent 770d560 commit b984ea7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/code-snippet/code-snippet.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
22
import { ComponentFixture, TestBed } from "@angular/core/testing";
33
import { StaticIconModule } from "../icon/static-icon.module";
4+
import { I18nModule } from "../i18n/i18n.module";
45

56
import { CodeSnippet } from "./code-snippet.component";
67

@@ -11,8 +12,7 @@ describe("CodeSnippet", () => {
1112
beforeEach(() => {
1213
TestBed.configureTestingModule({
1314
declarations: [CodeSnippet],
14-
imports: [BrowserAnimationsModule, StaticIconModule],
15-
providers: []
15+
imports: [BrowserAnimationsModule, StaticIconModule, I18nModule]
1616
});
1717

1818
fixture = TestBed.createComponent(CodeSnippet);

0 commit comments

Comments
 (0)