UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

26 lines (20 loc) 678 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { SortableFirstComponent } from './sortable-first.component'; describe('SortableFirstComponent', () => { let component: SortableFirstComponent; let fixture: ComponentFixture<SortableFirstComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ SortableFirstComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(SortableFirstComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });