ENI Process Project Angular
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
342B

  1. import { TestBed } from '@angular/core/testing';
  2. import { ApiService } from './api.service';
  3. describe('ApiService', () => {
  4. let service: ApiService;
  5. beforeEach(() => {
  6. TestBed.configureTestingModule({});
  7. service = TestBed.inject(ApiService);
  8. });
  9. it('should be created', () => {
  10. expect(service).toBeTruthy();
  11. });
  12. });