angular2-wizard-angular-material
Version:
This is an Angular2 Form Wizard component. Just like any form wizard. You can define steps and control how each step works. You can enable/disable navigation button based on validity of the current step. Currently, the component only support basic functio
24 lines (18 loc) • 545 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { WizardComponent } from './wizard.component';
import { FormWizardModule } from '../index';
describe('Wizard Component', () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [FormWizardModule]
});
});
beforeEach(() => {
TestBed.compileComponents();
});
describe('', () => {
it('', () => {
let fixture = TestBed.createComponent(WizardComponent);
});
});
});