UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

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