Files
app-ethereum/tests/src/generic.js

29 lines
535 B
JavaScript
Raw Normal View History

2021-05-26 12:08:40 +02:00
const sim_options_nanos = {
model: "nanos",
logging: true,
start_delay: 2000,
X11: true,
custom: "",
};
const sim_options_nanox = {
model: "nanox",
logging: true,
start_delay: 2000,
X11: true,
custom: "",
};
const Resolve = require("path").resolve;
const NANOS_ELF_PATH = Resolve("elfs/ethereum_nanos.elf");
const NANOX_ELF_PATH = Resolve("elfs/ethereum_nanox.elf");
2021-05-26 12:08:40 +02:00
const TIMEOUT = 1000000;
2021-05-26 12:08:40 +02:00
module.exports = {
NANOS_ELF_PATH,
NANOX_ELF_PATH,
2021-05-26 12:08:40 +02:00
sim_options_nanos,
sim_options_nanox,
TIMEOUT,
2021-05-26 12:08:40 +02:00
}