humainflow-web/src/app/services/flows/flows.spec.ts

17 lines
344 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { FlowsService } from './flows';
describe('FlowsService', () => {
let service: FlowsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(FlowsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});