16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { TestingApiService } from './testing-api.service';
|
|
|
|
describe('TestingapiService', () => {
|
|
let service: TestingApiService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(TestingApiService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|