import { Test, TestingModule } from '@nestjs/testing';
import { ManualVitalsService } from './manual_vitals.service';

describe('ManualVitalsService', () => {
  let service: ManualVitalsService;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      providers: [ManualVitalsService],
    }).compile();

    service = module.get<ManualVitalsService>(ManualVitalsService);
  });

  it('should be defined', () => {
    expect(service).toBeDefined();
  });
});
