aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/dashboard/dashboard.component.spec.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-02-23 15:33:26 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-02-23 15:33:26 -0500
commit1a46e367e2774bf31acd46bf088c29777c6c7f04 (patch)
treef85a1f1007f34033562c8c3018fa176409b1f4c7 /ufund-ui/src/app/dashboard/dashboard.component.spec.ts
parent02dbd629b932477609fd64bae0a3bd8fea1eec39 (diff)
downloadJellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.gz
JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.tar.bz2
JellySolutions-1a46e367e2774bf31acd46bf088c29777c6c7f04.zip
Create components
Diffstat (limited to 'ufund-ui/src/app/dashboard/dashboard.component.spec.ts')
-rw-r--r--ufund-ui/src/app/dashboard/dashboard.component.spec.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/ufund-ui/src/app/dashboard/dashboard.component.spec.ts b/ufund-ui/src/app/dashboard/dashboard.component.spec.ts
new file mode 100644
index 0000000..1a763b8
--- /dev/null
+++ b/ufund-ui/src/app/dashboard/dashboard.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { DashboardComponent } from './dashboard.component';
+
+describe('DashboardComponent', () => {
+ let component: DashboardComponent;
+ let fixture: ComponentFixture<DashboardComponent>;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [DashboardComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(DashboardComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});