IntegerMan/angularIF

View on GitHub
src/app/engine/parser/sentence-parser.service.spec.ts

Summary

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

import { SentenceParserService } from './sentence-parser.service';

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

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