add tests to core

This commit is contained in:
2025-12-23 19:26:59 +01:00
parent 14d390b831
commit 7290fe69b5
72 changed files with 861 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/payments/domain/entities/MemberPayment';
describe('payments/domain/entities/MemberPayment.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/payments/domain/entities/MembershipFee';
describe('payments/domain/entities/MembershipFee.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/payments/domain/entities/Payment';
describe('payments/domain/entities/Payment.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/payments/domain/entities/Prize';
describe('payments/domain/entities/Prize.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/payments/domain/entities/Wallet';
describe('payments/domain/entities/Wallet.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});

View File

@@ -0,0 +1,7 @@
import * as mod from '@core/payments/domain/entities/index';
describe('payments/domain/entities/index.ts', () => {
it('imports', () => {
expect(mod).toBeTruthy();
});
});