UNPKG

jqwidgets-scripts-custom

Version:

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

16 lines (12 loc) 386 B
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(); })); });