refactoring linear workflow directives

This commit is contained in:
alecmerdler 2017-02-21 15:59:26 -08:00 committed by Joseph Schorr
parent a83a7fe47a
commit e59d394491
10 changed files with 240 additions and 22 deletions

View file

@ -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", () => {
});
});