funky-framadate-front/src/app/pages/voting/choices-list/choices-list.component.spec.ts

25 lines
635 B
TypeScript
Raw Normal View History

2020-02-05 10:54:30 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ChoicesListComponent } from './choices-list.component';
describe('ChoicesListComponent', () => {
2020-04-21 10:50:26 +02:00
let component: ChoicesListComponent;
let fixture: ComponentFixture<ChoicesListComponent>;
2020-02-05 10:54:30 +01:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ChoicesListComponent],
}).compileComponents();
}));
2020-02-05 10:54:30 +01:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(ChoicesListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2020-02-05 10:54:30 +01:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2020-02-05 10:54:30 +01:00
});