blob: 0a6c63b746573f799bcc8100333ce198917ad87a [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();
}
));
});