Files
app-angular-demo/src/app/components/employees/employees-navbar/employees-navbar.component.spec.ts
T
2022-03-24 16:28:20 +01:00

26 lines
690 B
TypeScript

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