An error occurred while loading the file. Please try again.
-
Heinrich Marks authored46af3211
Forked from an inaccessible project.
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();
}));
});