add tests to core
This commit is contained in:
7
core/payments/domain/entities/MemberPayment.test.ts
Normal file
7
core/payments/domain/entities/MemberPayment.test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
7
core/payments/domain/entities/MembershipFee.test.ts
Normal file
7
core/payments/domain/entities/MembershipFee.test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
7
core/payments/domain/entities/Payment.test.ts
Normal file
7
core/payments/domain/entities/Payment.test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
7
core/payments/domain/entities/Prize.test.ts
Normal file
7
core/payments/domain/entities/Prize.test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
7
core/payments/domain/entities/Wallet.test.ts
Normal file
7
core/payments/domain/entities/Wallet.test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
7
core/payments/domain/entities/index.test.ts
Normal file
7
core/payments/domain/entities/index.test.ts
Normal 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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user