import { ComponentFixture, TestBed } from '@angular/core/testing';

import { NeedPageComponent } from './need-page.component';

describe('NeedPageComponent', () => {
  let component: NeedPageComponent;
  let fixture: ComponentFixture<NeedPageComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [NeedPageComponent]
    })
    .compileComponents();

    fixture = TestBed.createComponent(NeedPageComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});