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();
|
||||
});
|
||||
});
|
||||
@@ -1,18 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TeamsController } from './teams.controller';
|
||||
|
||||
describe('TeamsController', () => {
|
||||
let controller: TeamsController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [TeamsController],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<TeamsController>(TeamsController);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -1,18 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TeamsService } from './teams.service';
|
||||
|
||||
describe('TeamsService', () => {
|
||||
let service: TeamsService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [TeamsService],
|
||||
}).compile();
|
||||
|
||||
service = module.get<TeamsService>(TeamsService);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -1,18 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TransactionsController } from './transactions.controller';
|
||||
|
||||
describe('TransactionsController', () => {
|
||||
let controller: TransactionsController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [TransactionsController],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<TransactionsController>(TransactionsController);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -1,18 +0,0 @@
|
||||
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();
|
||||
});
|
||||
});
|
||||
@@ -1,18 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TranslateController } from './translate.controller';
|
||||
|
||||
describe('TranslateController', () => {
|
||||
let controller: TranslateController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [TranslateController],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<TranslateController>(TranslateController);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -1,18 +0,0 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { TranslateService } from './translate.service';
|
||||
|
||||
describe('TranslateService', () => {
|
||||
let service: TranslateService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [TranslateService],
|
||||
}).compile();
|
||||
|
||||
service = module.get<TranslateService>(TranslateService);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user