Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
content-answer.service.spec.ts 417 B
import { TestBed, inject } from '@angular/core/testing';

import { ContentAnswerService } from './content-answer.service';

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

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