ADD: Discovery Output with code integration

This commit is contained in:
2024-08-02 07:08:50 +02:00
parent 15365cfbfe
commit f6fb4f6b61
6 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { OutputComponent } from './output.component';
describe('OutputComponent', () => {
let component: OutputComponent;
let fixture: ComponentFixture<OutputComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [OutputComponent]
})
.compileComponents();
fixture = TestBed.createComponent(OutputComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});