UNPKG

novo-elements

Version:

Bullhorn's NOVO Element Repository for Angular 2

24 lines (20 loc) 610 B
// NG2 import { TestBed, async } from '@angular/core/testing'; // App import { NovoSwitchElement } from './Switch'; describe('Elements: NovoSwitchElement', () => { let fixture; let component; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ NovoSwitchElement ] }).compileComponents(); fixture = TestBed.createComponent(NovoSwitchElement); component = fixture.debugElement.componentInstance; })); it('should initialize correctly', () => { expect(component).toBeTruthy(); }); });