aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/cupboard/cupboard.component.spec.ts
blob: ece4f23941d0dce4e58a5fb84cf2c2c8f9d10dab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { CupboardComponent } from './cupboard.component';

describe('CupboardComponent', () => {
  let component: CupboardComponent;
  let fixture: ComponentFixture<CupboardComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [CupboardComponent]
    })
    .compileComponents();

    fixture = TestBed.createComponent(CupboardComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});