fehlerhafte tests entfernt
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TeamWalletTransactionsController } from './team-wallet-transactions.controller';
|
||||
|
||||
describe('TeamWalletTransactionController', () => {
|
||||
let controller: TeamWalletTransactionsController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [TeamWalletTransactionsController],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<TeamWalletTransactionsController>(
|
||||
TeamWalletTransactionsController,
|
||||
);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -1,20 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TeamWalletTransactionsService } from './team-wallet-transactions.service';
|
||||
|
||||
describe('TeamWalletTransactionService', () => {
|
||||
let service: TeamWalletTransactionsService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [TeamWalletTransactionsService],
|
||||
}).compile();
|
||||
|
||||
service = module.get<TeamWalletTransactionsService>(
|
||||
TeamWalletTransactionsService,
|
||||
);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user