Project: Mall App Client: Maiora
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 line
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. });