dnet-applications/frontends/dnet-is-application/src/app/is.service.spec.ts

17 lines
337 B
TypeScript
Raw Normal View History

2023-01-19 14:47:52 +01:00
import { TestBed } from '@angular/core/testing';
2023-01-20 16:57:03 +01:00
import { ISService } from './is.service';
2023-01-19 14:47:52 +01:00
2023-01-20 16:57:03 +01:00
describe('ISService', () => {
let service: ISService;
2023-01-19 14:47:52 +01:00
beforeEach(() => {
TestBed.configureTestingModule({});
2023-01-20 16:57:03 +01:00
service = TestBed.inject(ISService);
2023-01-19 14:47:52 +01:00
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});