This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/user/navbar-user/navbar-user.component.spec.ts

25 lines
655 B
TypeScript

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