AlexAegis/loreplotter

View on GitHub
src/app/lore/component/dialog/form-entry.component.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { FormEntryComponent } from 'src/app/lore/component/dialog/form-entry.component';

describe('FormEntryComponent', () => {
    let component: FormEntryComponent;
    let fixture: ComponentFixture<FormEntryComponent>;

    beforeEach(async(() => {
        TestBed.configureTestingModule({
            declarations: [FormEntryComponent]
        }).compileComponents();
    }));

    beforeEach(() => {
        fixture = TestBed.createComponent(FormEntryComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
    });

    it('should create', () => {
        expect(component).toBeTruthy();
    });
});