vip.component.spec.ts 741 B

12345678910111213141516171819202122232425262728
  1. /* tslint:disable:no-unused-variable */
  2. import { async, ComponentFixture, TestBed } from '@angular/core/testing';
  3. import { By } from '@angular/platform-browser';
  4. import { DebugElement } from '@angular/core';
  5. import { VipComponent } from './vip.component';
  6. describe('VipComponent', () => {
  7. let component: VipComponent;
  8. let fixture: ComponentFixture<VipComponent>;
  9. beforeEach(async(() => {
  10. TestBed.configureTestingModule({
  11. declarations: [ VipComponent ]
  12. })
  13. .compileComponents();
  14. }));
  15. beforeEach(() => {
  16. fixture = TestBed.createComponent(VipComponent);
  17. component = fixture.componentInstance;
  18. fixture.detectChanges();
  19. });
  20. it('should create', () => {
  21. expect(component).toBeTruthy();
  22. });
  23. });