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

25 lines
668 B
TypeScript
Raw Normal View History

2019-12-01 19:21:05 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { VotingComponent } from './voting.component';
describe('VotingComponent', () => {
let component: VotingComponent;
let fixture: ComponentFixture<VotingComponent>;
2019-12-01 19:21:05 +01:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [VotingComponent],
}).compileComponents();
}));
2019-12-01 19:21:05 +01:00
beforeEach(() => {
fixture = TestBed.createComponent(VotingComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-12-01 19:21:05 +01:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-12-01 19:21:05 +01:00
});