import { Test, TestingModule } from '@nestjs/testing';
import { BhasiniService } from './bhasini.service';

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

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

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

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