Project: Mall App Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

28 行
698 B

  1. import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
  2. import { async, ComponentFixture, TestBed } from '@angular/core/testing';
  3. import { ProfilePage } from './profile.page';
  4. describe('ProfilePage', () => {
  5. let component: ProfilePage;
  6. let fixture: ComponentFixture<ProfilePage>;
  7. beforeEach(async(() => {
  8. TestBed.configureTestingModule({
  9. declarations: [ ProfilePage ],
  10. schemas: [CUSTOM_ELEMENTS_SCHEMA],
  11. })
  12. .compileComponents();
  13. }));
  14. beforeEach(() => {
  15. fixture = TestBed.createComponent(ProfilePage);
  16. component = fixture.componentInstance;
  17. fixture.detectChanges();
  18. });
  19. it('should create', () => {
  20. expect(component).toBeTruthy();
  21. });
  22. });