AlexAegis/loreplotter

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

Summary

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

import { ActorFormComponent } from 'src/app/lore/component/dialog/actor-form.component';

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

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

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

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