@ledgerhq/coin-aptos
Version:
Ledger Aptos Coin integration
19 lines (18 loc) • 349 B
JavaScript
/** @type {import('jest').Config} */
module.exports = {
testEnvironment: "node",
testRegex: ".integ.test.ts$",
testPathIgnorePatterns: ["lib/", "lib-es/"],
testTimeout: 60_000,
forceExit: true,
transform: {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
jsc: {
target: "esnext",
},
},
],
},
};