Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderVertegaal committed Dec 10, 2024
1 parent 9b17b5d commit 0fbd4e4
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
import { ComponentFixture, TestBed } from "@angular/core/testing";

import { MinimalistParserBrowserComponent } from "./minimalist-parser-browser.component";
import { HttpClientTestingModule } from "@angular/common/http/testing";
import { SharedModule } from "src/app/shared/shared.module";

describe("MinimalistParserBrowserComponent", () => {
let component: MinimalistParserBrowserComponent;
let fixture: ComponentFixture<MinimalistParserBrowserComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({}).compileComponents();
await TestBed.configureTestingModule({
declarations: [MinimalistParserBrowserComponent],
imports: [HttpClientTestingModule, SharedModule],
}).compileComponents();

fixture = TestBed.createComponent(MinimalistParserBrowserComponent);
component = fixture.componentInstance;
Expand Down

0 comments on commit 0fbd4e4

Please sign in to comment.