import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CommunityComponent } from './community.component'; describe('CommunityComponent', () => { let component: CommunityComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CommunityComponent] }) .compileComponents(); fixture = TestBed.createComponent(CommunityComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });