website refactor
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
import { LeagueWallet } from './LeagueWallet';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { Money } from '../../value-objects/Money';
|
||||
import { LeagueWallet } from './LeagueWallet';
|
||||
|
||||
describe('LeagueWallet', () => {
|
||||
it('should create a league wallet', () => {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { LeagueWalletId } from './LeagueWalletId';
|
||||
|
||||
describe('LeagueWalletId', () => {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { Money } from '../../value-objects/Money';
|
||||
import { LeagueWalletId } from './LeagueWalletId';
|
||||
import { Transaction } from './Transaction';
|
||||
import { TransactionId } from './TransactionId';
|
||||
import { LeagueWalletId } from './LeagueWalletId';
|
||||
import { Money } from '../../value-objects/Money';
|
||||
|
||||
describe('Transaction', () => {
|
||||
const validId = TransactionId.create('tx1');
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { TransactionId } from './TransactionId';
|
||||
|
||||
describe('TransactionId', () => {
|
||||
|
||||
Reference in New Issue
Block a user