Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"lodash": "^4.17.21",
"ts-pattern": "^5.8.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
"vitest": "^4.0.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/polkadot/src/acala.moonbeam.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { describe } from 'vitest'

describe(
'acala & moonbeam',
{ skip: true }, // TODO: until we figured out how to query balances on Moonbeam again
async () => {
const [acalaClient, moonbeamClient, polkadotClient] = await setupNetworks(acala, moonbeam, polkadot)

Expand Down Expand Up @@ -122,5 +123,4 @@ describe(
}
})
},
{ skip: true }, // TODO: until we figured out how to query balances on Moonbeam again
)
2 changes: 1 addition & 1 deletion packages/polkadot/src/hydration.moonbeam.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { describe } from 'vitest'

describe(
'hydration & moonbeam',
{ skip: true }, // TODO: until we figured out how to query balances on Moonbeam again
async () => {
const [hydrationClient, moonbeamClient, polkadotClient] = await setupNetworks(hydration, moonbeam, polkadot)

Expand Down Expand Up @@ -75,5 +76,4 @@ describe(
}
})
},
{ skip: true }, // TODO: until we figured out how to query balances on Moonbeam again
)
50 changes: 25 additions & 25 deletions packages/polkadot/src/peoplePolkadot.polkadot.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@ import { runXcmPalletDown, runXcmPalletUp } from '@e2e-test/shared/xcm'

import { describe } from 'vitest'

describe(
'polkadot & peoplePolkadot',
async () => {
const [polkadotClient, peopleClient] = await setupNetworks(polkadot, peoplePolkadot)
describe('polkadot & peoplePolkadot', async () => {
const [polkadotClient, peopleClient] = await setupNetworks(polkadot, peoplePolkadot)

const peopleDOT = peoplePolkadot.custom.dot
const polkadotDOT = polkadot.custom.dot
const peopleDOT = peoplePolkadot.custom.dot
const polkadotDOT = polkadot.custom.dot

runXcmPalletDown(
'polkadot transfer DOT to peoplePolkadot',
async () => {
return {
fromChain: polkadotClient,
toChain: peopleClient,
balance: query.balances,
toAccount: defaultAccounts.dave,
tx: tx.xcmPallet.teleportAssetsV3(polkadotDOT, 1e12, tx.xcmPallet.parachainV3(0, peoplePolkadot.paraId!)),
totalIssuanceProvider: () => query.totalIssuance(polkadotClient),
}
},
{ skip: true },
)
runXcmPalletDown(
'polkadot transfer DOT to peoplePolkadot',
async () => {
return {
fromChain: polkadotClient,
toChain: peopleClient,
balance: query.balances,
toAccount: defaultAccounts.dave,
tx: tx.xcmPallet.teleportAssetsV3(polkadotDOT, 1e12, tx.xcmPallet.parachainV3(0, peoplePolkadot.paraId!)),
totalIssuanceProvider: () => query.totalIssuance(polkadotClient),
}
},
{ skip: true },
)

runXcmPalletUp('peoplePolkadot transfer DOT to polkadot', async () => {
runXcmPalletUp(
'peoplePolkadot transfer DOT to polkadot',
async () => {
return {
fromChain: peopleClient,
toChain: polkadotClient,
Expand All @@ -38,7 +38,7 @@ describe(
tx: tx.xcmPallet.teleportAssetsV3(peopleDOT, 1e12, tx.xcmPallet.relaychainV4),
totalIssuanceProvider: () => query.totalIssuance(polkadotClient),
}
})
},
{ skip: true },
)
},
{ skip: true },
)
})
Loading