tab1.page.spec.ts 458 B

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