funky-framadate-front/src/app/shared/components/choice-details/choice-details.component.sp...

25 lines
649 B
TypeScript
Raw Normal View History

2019-08-10 17:41:01 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2020-05-12 19:16:23 +02:00
import { ChoiceDetailsComponent } from './choice-details.component';
2019-08-10 17:41:01 +02:00
2020-05-12 19:16:23 +02:00
describe('ChoiceDetailsComponent', () => {
let component: ChoiceDetailsComponent;
let fixture: ComponentFixture<ChoiceDetailsComponent>;
2019-08-10 17:41:01 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
2020-05-12 19:16:23 +02:00
declarations: [ChoiceDetailsComponent],
2020-04-21 10:50:26 +02:00
}).compileComponents();
}));
2019-08-10 17:41:01 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
2020-05-12 19:16:23 +02:00
fixture = TestBed.createComponent(ChoiceDetailsComponent);
2020-04-21 10:50:26 +02:00
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-08-10 17:41:01 +02:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-08-10 17:41:01 +02:00
});