jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
16 lines (12 loc) • 411 B
text/typescript
import { TestBed, inject } from '@angular/core/testing';
import { AddComponentService } from './add-component.service';
describe('AddComponentService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [AddComponentService]
});
});
it('should be created', inject([AddComponentService], (service: AddComponentService) => {
expect(service).toBeTruthy();
}));
});