Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nohaapav committed Mar 26, 2024
1 parent 0b9738c commit 28111f6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/sdk/test/api/router.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ describe('Router with mocked XYK pool service', () => {
icon: 'BSX',
name: 'BSX',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
origin: undefined,
meta: undefined,
Expand All @@ -67,6 +68,7 @@ describe('Router with mocked XYK pool service', () => {
icon: 'AUSD',
name: 'Acala Dollar',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
origin: undefined,
meta: undefined,
Expand All @@ -78,6 +80,7 @@ describe('Router with mocked XYK pool service', () => {
icon: 'KSM',
name: 'Kusama',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
origin: undefined,
meta: undefined,
Expand All @@ -97,6 +100,7 @@ describe('Router with mocked XYK pool service', () => {
icon: 'AUSD',
name: 'Acala Dollar',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
origin: undefined,
meta: undefined,
Expand All @@ -108,6 +112,7 @@ describe('Router with mocked XYK pool service', () => {
icon: 'BSX',
name: 'BSX',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
origin: undefined,
meta: undefined,
Expand Down
2 changes: 2 additions & 0 deletions packages/sdk/test/data/xykPool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const xykPool = {
icon: 'KSM',
name: 'Kusama',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
{
Expand All @@ -25,6 +26,7 @@ export const xykPool = {
icon: 'AUSD',
name: 'Acala Dollar',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
],
Expand Down
6 changes: 6 additions & 0 deletions packages/sdk/test/data/xykPools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const xykPools = [
icon: 'BSX',
name: 'BSX',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
{
Expand All @@ -26,6 +27,7 @@ export const xykPools = [
icon: 'AUSD',
name: 'Acala Dollar',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
],
Expand All @@ -45,6 +47,7 @@ export const xykPools = [
icon: 'KSM',
name: 'Kusama',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
{
Expand All @@ -55,6 +58,7 @@ export const xykPools = [
icon: 'AUSD',
name: 'Acala Dollar',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
],
Expand All @@ -74,6 +78,7 @@ export const xykPools = [
icon: 'BSX',
name: 'BSX',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
{
Expand All @@ -84,6 +89,7 @@ export const xykPools = [
icon: 'KSM',
name: 'Kusama',
type: 'Token',
isSufficient: true,
existentialDeposit: '1000',
},
],
Expand Down

0 comments on commit 28111f6

Please sign in to comment.