Listory/src/connections/connections.service.spec.ts

18 lines
494 B
TypeScript

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>(ConnectionsService);
});
it("should be defined", () => {
expect(service).toBeDefined();
});
});