tab2.page.spec.ts 440 B

123456789101112131415161718
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { Tab2Page } from './tab2.page';
  3. describe('Tab2Page', () => {
  4. let component: Tab2Page;
  5. let fixture: ComponentFixture<Tab2Page>;
  6. beforeEach(async () => {
  7. fixture = TestBed.createComponent(Tab2Page);
  8. component = fixture.componentInstance;
  9. fixture.detectChanges();
  10. });
  11. it('should create', () => {
  12. expect(component).toBeTruthy();
  13. });
  14. });