2021-05-26 12:08:40 +02:00
|
|
|
export default jest;
|
|
|
|
|
export const { expect, test } = global;
|
|
|
|
|
|
|
|
|
|
export const sim_options_s = {
|
|
|
|
|
model: "nanos",
|
|
|
|
|
logging: true,
|
|
|
|
|
start_delay: 2000,
|
|
|
|
|
X11: true,
|
|
|
|
|
custom: "",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const sim_options_x = {
|
|
|
|
|
model: "nanox",
|
|
|
|
|
logging: true,
|
|
|
|
|
start_delay: 2000,
|
|
|
|
|
X11: true,
|
|
|
|
|
custom: "",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const Resolve = require("path").resolve;
|
2021-06-17 17:20:52 +02:00
|
|
|
export const NANOS_ELF_PATH = Resolve("elfs/ethereum_nanos.elf");
|
|
|
|
|
export const NANOX_ELF_PATH = Resolve("elfs/ethereum_nanox.elf");
|