import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { <%= Pages %>Component } from './<%= pages %>.component';

describe('<%= Pages %>Component', () => {
  let component: <%= Pages %>Component;
  let fixture: ComponentFixture<<%= Pages %>Component>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ <%= Pages %>Component ]
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(<%= Pages %>Component);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

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