sharepulse/frontend/src/app/credits/credits.component.spec.ts
Max 704969d041 Added sample UI design
- 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
2024-01-28 13:55:39 +01:00

24 lines
603 B
TypeScript

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