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