12345678910111213141516171819202122232425262728 |
- /* 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 { VipComponent } from './vip.component';
- describe('VipComponent', () => {
- let component: VipComponent;
- let fixture: ComponentFixture<VipComponent>;
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ VipComponent ]
- })
- .compileComponents();
- }));
- beforeEach(() => {
- fixture = TestBed.createComponent(VipComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|