bullhorn/career-portal

View on GitHub
src/app/structured-seo/structured-seo.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';

import { StructuredSeoComponent } from './structured-seo.component';

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

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

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

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