Skip to content
Snippets Groups Projects
posts.service.spec.ts 453 B
Newer Older
  • Learn to ignore specific revisions
  • import { Test, TestingModule } from '@nestjs/testing';
    import { PostsService } from './posts.service';
    
    describe('PostsService', () => {
      let service: PostsService;
    
      beforeEach(async () => {
        const module: TestingModule = await Test.createTestingModule({
          providers: [PostsService],
        }).compile();
    
        service = module.get<PostsService>(PostsService);
      });
    
      it('should be defined', () => {
        expect(service).toBeDefined();
      });
    });