- Added credits component - Added simple icons - Made navbar responsive for mobile - Added credits/upload/download/home/navbar components - Created simple design for home component - Added tailwindcss and daisyUI and TailwindCSS
24 lines
596 B
TypeScript
24 lines
596 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { NavbarComponent } from './navbar.component';
|
|
|
|
describe('NavbarComponent', () => {
|
|
let component: NavbarComponent;
|
|
let fixture: ComponentFixture<NavbarComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [NavbarComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(NavbarComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|