first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TransactionsService } from './transactions.service';
|
||||
|
||||
describe('TransactionsService', () => {
|
||||
let service: TransactionsService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [TransactionsService],
|
||||
}).compile();
|
||||
|
||||
service = module.get<TransactionsService>(TransactionsService);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user