aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/funding-basket/funding-basket.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/components/funding-basket/funding-basket.component.spec.ts')
-rw-r--r--ufund-ui/src/app/components/funding-basket/funding-basket.component.spec.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/funding-basket/funding-basket.component.spec.ts b/ufund-ui/src/app/components/funding-basket/funding-basket.component.spec.ts
new file mode 100644
index 0000000..1cdd9d2
--- /dev/null
+++ b/ufund-ui/src/app/components/funding-basket/funding-basket.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { FundingBasketComponent } from './funding-basket.component';
+
+describe('FundingBasketComponent', () => {
+ let component: FundingBasketComponent;
+ let fixture: ComponentFixture<FundingBasketComponent>;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [FundingBasketComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(FundingBasketComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});