fehlerhafte tests entfernt

This commit is contained in:
Bastian Wagner
2026-08-01 19:44:07 +02:00
parent bf1cef961a
commit 6eab6251d5
8 changed files with 0 additions and 148 deletions

View File

@@ -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();
});
});

View File

@@ -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();
});
});