OpenSlides/client/src/app/core/ui-services/progress.service.spec.ts

13 lines
357 B
TypeScript
Raw Normal View History

import { TestBed } from '@angular/core/testing';
import { ProgressService } from './progress.service';
describe('ProgressService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ProgressService = TestBed.get(ProgressService);
expect(service).toBeTruthy();
});
});