funky-framadate-front/src/app/features/user-profile/user-polls/user-polls.component.spec.ts

25 lines
621 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { UserPollsComponent } from './user-polls.component';
describe('UserPollsComponent', () => {
let component: UserPollsComponent;
let fixture: ComponentFixture<UserPollsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [UserPollsComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(UserPollsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});