19 lines
422 B
TypeScript
19 lines
422 B
TypeScript
import { LinearWorkflowComponent, SectionInfo } from './linear-workflow.component';
|
|
import { LinearWorkflowSectionComponent } from './linear-workflow-section.component';
|
|
|
|
|
|
describe("LinearWorkflowComponent", () => {
|
|
var component: LinearWorkflowComponent;
|
|
|
|
beforeEach(() => {
|
|
component = new LinearWorkflowComponent();
|
|
});
|
|
|
|
describe("addSection", () => {
|
|
|
|
});
|
|
|
|
describe("onNextSection", () => {
|
|
|
|
});
|
|
});
|