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