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