blob: e065079e301e5d70e32c47a2cf7ff688b440f0d6 [file] [log] [blame]
import { TestBed, inject } from '@angular/core/testing';
import { TestingModule } from '../../../testing/testing.module';
import { WorkflowService } from './workflow.service';
describe('WorkflowService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [TestingModule],
providers: [WorkflowService]
});
});
it('should be created', inject([WorkflowService], (service: WorkflowService) => {
expect(service).toBeTruthy();
}));
});