@ledgerhq/coin-filecoin
Version:
Ledger Filecoin Coin integration
21 lines (20 loc) • 431 B
JavaScript
/** @type {import('jest').Config} */
module.exports = {
testEnvironment: "node",
setupFilesAfterEnv: ["@ledgerhq/wallet-framework-test-setup"],
testRegex: ".integ.test.ts$",
testPathIgnorePatterns: ["lib/", "lib-es/"],
testTimeout: 60_000,
maxWorkers: 1,
forceExit: true,
transform: {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
jsc: {
target: "esnext",
},
},
],
},
};