19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
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>(GeolocationsGateway)
|
|
});
|
|
|
|
it('should be defined', () => {
|
|
expect(gateway).toBeDefined()
|
|
})
|
|
})
|