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) • 707 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ProfitDropdownTwoComponent } from './profit-dropdown-two.component';
describe('ProfitDropdownTwoComponent', () => {
let component: ProfitDropdownTwoComponent;
let fixture: ComponentFixture<ProfitDropdownTwoComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ProfitDropdownTwoComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ProfitDropdownTwoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});