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