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

17 lines
356 B
TypeScript
Raw Normal View History

2020-05-01 19:10:17 +02:00
import { TestBed } from '@angular/core/testing';
import { WorkflowService } from './workflow.service';
describe('WorkflowService', () => {
let service: WorkflowService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(WorkflowService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});