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