import "core-js/stable"; import "regenerator-runtime/runtime"; import { EthAppPleaseEnableContractData } from "@ledgerhq/errors"; import { waitForAppScreen, zemu, nano_models } from './test.fixture'; nano_models.forEach(function(model) { test("[Nano " + model.letter + "] Transfer on Ethereum clone app", zemu(model, async (sim, eth) => { const tx = eth.signTransaction( "44'/60'/0'/0/0", 'EB44850306DC4200825208945A321744667052AFFA8386ED49E00EF223CBFFC3876F9C9E7BF61818803D8080', ); await waitForAppScreen(sim); let clicks; if (model.letter === 'S') clicks = [9]; else clicks = [5]; // Go to the reject screen await sim.navigateAndCompareSnapshots('.', model.name + '_transfer_ethereum_clone', clicks); // Accepting the transaction somehow takes too long for Zemu and takes the same screenshot // twice, so accept it manually await sim.clickLeft(); await sim.clickBoth(); await expect(tx).resolves.toEqual({ "r": "60df850d297e355596f87dc313a742032de4b59c5579186b3d59bdf31402fec0", "s": "23c3a2beacabc1943d487a2e1d545e4c46c718b1e70e9d1c11a98828c9338927", "v": "9e", }); }, true)); }); nano_models.forEach(function(model) { test("[Nano " + model.letter + "] Transfer on network 5234 on Ethereum clone", zemu(model, async (sim, eth) => { const tx = eth.signTransaction( "44'/60'/0'/0/0", 'ED44850306DC4200825208945A321744667052AFFA8386ED49E00EF223CBFFC3876F9C9E7BF61818808214728080', ); await expect(tx).rejects.toEqual(new EthAppPleaseEnableContractData( "Please enable Contract data on the Ethereum app Settings" )); }, true)); });