Skip to content
Snippets Groups Projects
new-audit-options.component.spec.ts 693 B
Newer Older
Paulina Nogal's avatar
Paulina Nogal committed
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { NewAuditOptionsComponent } from './new-audit-options.component';

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

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

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

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