From 8a2d6c332a089c2dbb7351514499e16f343959ff Mon Sep 17 00:00:00 2001 From: sowgro Date: Wed, 26 Feb 2025 20:41:35 -0500 Subject: Start services and organize project --- .../need-list/need-list.component.spec.ts | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ufund-ui/src/app/components/need-list/need-list.component.spec.ts (limited to 'ufund-ui/src/app/components/need-list/need-list.component.spec.ts') diff --git a/ufund-ui/src/app/components/need-list/need-list.component.spec.ts b/ufund-ui/src/app/components/need-list/need-list.component.spec.ts new file mode 100644 index 0000000..f9b7830 --- /dev/null +++ b/ufund-ui/src/app/components/need-list/need-list.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { NeedListComponent } from './need-list.component'; + +describe('NeedListComponent', () => { + let component: NeedListComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [NeedListComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(NeedListComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); -- cgit v1.2.3