import { ComponentFixture, TestBed } from '@angular/core/testing'; import {NaviosComponent } from './navios.component'; describe('NaviosComponent', () => { let component: NaviosComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [NaviosComponent] }) .compileComponents(); fixture = TestBed.createComponent(NaviosComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });