Cloud-CV/EvalAI

View on GitHub
frontend_v2/src/app/services/endpoints.service.spec.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import { TestBed, inject } from '@angular/core/testing';

import { EndpointsService } from './endpoints.service';

describe('EndpointsService', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [EndpointsService],
    });
  });

  it('should be created', inject([EndpointsService], (service: EndpointsService) => {
    expect(service).toBeTruthy();
  }));
});