info-viplist-page.component.spec.ts
827 Bytes
/* 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 { InfoViplistPageComponent } from './info-viplist-page.component';
describe('InfoViplistPageComponent', () => {
let component: InfoViplistPageComponent;
let fixture: ComponentFixture<InfoViplistPageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ InfoViplistPageComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InfoViplistPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});