import { Test, TestingModule } from '@nestjs/testing' import { GeolocationsController } from './geolocations.controller' import { GeolocationsService } from './geolocations.service' describe('GeolocationsController', () => { let controller: GeolocationsController beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ controllers: [GeolocationsController], providers: [GeolocationsService], }).compile() controller = module.get(GeolocationsController) }) it('should be defined', () => { expect(controller).toBeDefined() }) })