navigation-panel.component.spec.ts 657 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { NavigationPanelComponent } from './navigation-panel.component';
  3. describe('NavigationPanelComponent', () => {
  4. let component: NavigationPanelComponent;
  5. let fixture: ComponentFixture<NavigationPanelComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [NavigationPanelComponent],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(NavigationPanelComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });