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