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) • 386 B
text/typescript
import { TestBed, inject } from '@angular/core/testing';
import { EmployeeService } from './employee.service';
describe('EmployeeService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [EmployeeService]
});
});
it('should be created', inject([EmployeeService], (service: EmployeeService) => {
expect(service).toBeTruthy();
}));
});