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