Small refactor to support mocking RBF txs
This commit is contained in:
parent
bc7bbf5fe5
commit
0af5d733c4
@ -68,7 +68,13 @@ export const emitMempoolInfo = ({
|
|||||||
//TODO: Use network specific mocks
|
//TODO: Use network specific mocks
|
||||||
case "signet":
|
case "signet":
|
||||||
case "testnet":
|
case "testnet":
|
||||||
|
case "mainnet":
|
||||||
default:
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (params.command) {
|
||||||
|
case "init": {
|
||||||
win.mockSocket.send('{"action":"init"}');
|
win.mockSocket.send('{"action":"init"}');
|
||||||
win.mockSocket.send('{"action":"want","data":["blocks","stats","mempool-blocks","live-2h-chart"]}');
|
win.mockSocket.send('{"action":"want","data":["blocks","stats","mempool-blocks","live-2h-chart"]}');
|
||||||
win.mockSocket.send('{"conversions":{"USD":32365.338815782445}}');
|
win.mockSocket.send('{"conversions":{"USD":32365.338815782445}}');
|
||||||
@ -78,6 +84,16 @@ export const emitMempoolInfo = ({
|
|||||||
cy.readFile('cypress/fixtures/mainnet_mempoolInfo.json', 'ascii').then((fixture) => {
|
cy.readFile('cypress/fixtures/mainnet_mempoolInfo.json', 'ascii').then((fixture) => {
|
||||||
win.mockSocket.send(JSON.stringify(fixture));
|
win.mockSocket.send(JSON.stringify(fixture));
|
||||||
});
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case "rbfTransaction": {
|
||||||
|
cy.readFile('cypress/fixtures/mainnet_rbf.json', 'ascii').then((fixture) => {
|
||||||
|
win.mockSocket.send(JSON.stringify(fixture));
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
cy.waitForSkeletonGone();
|
cy.waitForSkeletonGone();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user