funky-framadate-front/src/app/core/services/poll.service.spec.ts

17 lines
336 B
TypeScript
Raw Normal View History

import { TestBed } from '@angular/core/testing';
2019-12-03 17:20:57 +01:00
import { PollService } from './poll.service';
describe('PollService', () => {
let service: PollService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(PollService);
});
2020-04-21 10:50:26 +02:00
it('should be created', () => {
expect(service).toBeTruthy();
});
});