teableio/teable

View on GitHub
apps/nestjs-backend/src/ws/ws.gateway.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { TestingModule } from '@nestjs/testing';
import { Test } from '@nestjs/testing';
import { SessionHandleModule } from '../features/auth/session/session-handle.module';
import { GlobalModule } from '../global/global.module';
import { ShareDbModule } from '../share-db/share-db.module';
import { WsGateway } from './ws.gateway';

describe('WSGateway', () => {
  let service: WsGateway;
  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      imports: [GlobalModule, ShareDbModule, SessionHandleModule],
      providers: [WsGateway],
    }).compile();

    service = module.get<WsGateway>(WsGateway);
  });

  it('should be defined', () => {
    expect(service).toBeDefined();
  });
});