Project: Mall App Client: Maiora
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

28 líneas
727 B

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