Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const testCases: TestConfiguration[] = [
foreign: {
transfer: [{ section: 'polkadotXcm', method: 'Sent' }],
receive: {
foreign: ['foreignAssets', { section: 'messageQueue', method: 'Processed' }],
foreign: ['foreignAssets'],
native: [
{ section: 'balances', method: 'Burned' },
{ section: 'balances', method: 'Minted' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,6 @@ exports[`Switch KILTs while receiver can not handle them > V4 LIVE > Switch on n
]
`;

exports[`Switch KILTs while receiver can not handle them > V4 LIVE > Switch on receiver chain: {"section":"messageQueue","method":"Processed"} 1`] = `
[
{
"data": {
"id": "(hash)",
"origin": {
"Sibling": "(rounded 2100)",
},
"success": false,
"weightUsed": {
"proofSize": "(rounded 24000)",
"refTime": "(rounded 1500000000)",
},
},
"method": "Processed",
"section": "messageQueue",
},
]
`;

exports[`Switch KILTs while receiver can not handle them > V4 LIVE > assetSwitchPool1 Finalization 1`] = `
[
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,7 @@ export const testCases: TestConfiguration[] = [
tx: tx.switchPallet.switchV4(),
events: {
sender: ['assetSwitchPool1'],
receiver: [
{
section: 'messageQueue',
method: 'Processed',
},
],
receiver: [],
},
},
sovereignAccount: mainChains.kilt.chainInfo.sovereignAccountOnSiblingChains,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,5 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`Switch eKILTs while no pair set > V4 LIVE > Switch eKILTs on receiver chain: {"section":"messageQueue","method":"Processed"} 1`] = `
[
{
"data": {
"id": "(hash)",
"origin": {
"Sibling": 1000,
},
"success": false,
"weightUsed": {
"proofSize": 0,
"refTime": 200000000,
},
},
"method": "Processed",
"section": "messageQueue",
},
]
`;

exports[`Switch eKILTs while no pair set > V4 LIVE > Switch eKILTs on sender chain: {"section":"polkadotXcm","method":"Sent"} 1`] = `
[
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,7 @@ export const testCases: TestConfiguration[] = [
method: 'Sent',
},
],
receiver: [
{
section: 'messageQueue',
method: 'Processed',
},
],
receiver: [],
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`Switch other reserve location > V4 LIVE > Switch eKILTs from untrusted location receiver: {"section":"messageQueue","method":"ProcessingFailed"} 1`] = `
[
{
"data": {
"error": "Unsupported",
"id": "(hash)",
"origin": "Parent",
},
"method": "ProcessingFailed",
"section": "messageQueue",
},
]
`;

exports[`Switch other reserve location > V4 LIVE > Switch eKILTs from untrusted location sender: {"section":"xcmPallet","method":"Sent"} 1`] = `
[
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,7 @@ export const testCases: TestConfiguration[] = [
method: 'Sent',
},
],
receiver: [
{
section: 'messageQueue',
method: 'ProcessingFailed',
},
],
receiver: [],
},
},
},
Expand Down
Loading