arranbartish/angular-cli-widgets

View on GitHub
projects/angular-cli-widgets-components/src/lib/tek-contact-us-form/tek-contact-us-form.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { TekContactUsFormComponent } from './tek-contact-us-form.component';
import {expect} from 'chai';

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

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ TekContactUsFormComponent ],
      schemas: [NO_ERRORS_SCHEMA]
    })
    .compileComponents();
  }));

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

  it('should create', () => {
    expect(component).to.be.ok;
  });
});