Cloud-CV/EvalAI

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

Summary

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

import { GlobalService } from './global.service';

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

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