refactoring linear workflow directives
This commit is contained in:
parent
a83a7fe47a
commit
e59d394491
10 changed files with 240 additions and 22 deletions
|
@ -0,0 +1,19 @@
|
|||
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", () => {
|
||||
|
||||
});
|
||||
});
|
Reference in a new issue