@ledgerhq/coin-tezos
Version:
13 lines (11 loc) • 424 B
JavaScript
// SPDX-FileCopyrightText: © 2024 LEDGER SAS
// SPDX-License-Identifier: Apache-2.0
/** @type {import('jest').Config} */
module.exports = {
...require("../jest.integ.config.base"),
// bn.js is used by @taquito/* — pin it to the local resolution to avoid
// version mismatches across nested node_modules trees in pnpm
moduleNameMapper: {
"^bn\\.js$": require.resolve("bn.js", { paths: [__dirname] }),
},
};