import {ComponentFixture, TestBed} from "@angular/core/testing"; import {AudioViewerComponent} from "./audio-viewer.component"; describe("AudioViewerComponent", () => { let component: AudioViewerComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [AudioViewerComponent] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(AudioViewerComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it("should create", () => { expect(component).toBeTruthy(); }); });