IntegerMan/angularIF

View on GitHub
src/app/command-area/command-entry.service.spec.ts

Summary

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

import { CommandEntryService } from './command-entry.service';

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

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