1234567891011121314151617 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { Tab13Page } from './tab13.page';
- describe('Tab13Page', () => {
- let component: Tab13Page;
- let fixture: ComponentFixture<Tab13Page>;
- beforeEach(() => {
- fixture = TestBed.createComponent(Tab13Page);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|