teableio/teable

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

Summary

Maintainability
A
0 mins
Test Coverage
import type { TestingModule } from '@nestjs/testing';
import { Test } from '@nestjs/testing';
import { WsService } from './ws.service';

describe('WsService', () => {
  let service: WsService;

  beforeEach(async () => {
    const module: TestingModule = await Test.createTestingModule({
      providers: [WsService],
    }).compile();

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

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