dnet-applications/frontends/dnet-is-application/src/app/main-menu-panels/main-menu-panels.component....

24 lines
657 B
TypeScript
Raw Normal View History

2023-01-20 13:19:34 +01:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MainMenuPanelsComponent } from './main-menu-panels.component';
describe('MainMenuPanelsComponent', () => {
let component: MainMenuPanelsComponent;
let fixture: ComponentFixture<MainMenuPanelsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ MainMenuPanelsComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(MainMenuPanelsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});