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