summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2025-03-04 12:27:45 +0100
committerGitHub <noreply@github.com>2025-03-04 12:27:45 +0100
commitfdb16635cbfe1d45a3d5869c0a55ec871d912ea0 (patch)
treeec6703c28b4f09c6d10f56339db78a3cdb2c8b82 /tests
parent991a0d0c97bce6ae8671dc763dd03876dfa9ea8a (diff)
chore(deps): update zano digest to fe85ce2 (#116)
* chore(deps): update zano digest to fe85ce2 * rebase needed patches * fix integration tests, generate checksum --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Czarek Nakamoto <cyjan@mrcyjanek.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/integration.test.ts2
-rwxr-xr-xtests/regression.test.ts11
2 files changed, 1 insertions, 12 deletions
diff --git a/tests/integration.test.ts b/tests/integration.test.ts
index eb478f7..3aebe38 100644
--- a/tests/integration.test.ts
+++ b/tests/integration.test.ts
@@ -21,7 +21,7 @@ async function syncBlockchain(wallet: Wallet): Promise<bigint> {
clearTimeout(timeout);
resolve(blockChainHeight);
} else {
- setTimeout(poll, 500);
+ timeout = setTimeout(poll, 500);
}
};
diff --git a/tests/regression.test.ts b/tests/regression.test.ts
index 797720f..481c1a6 100755
--- a/tests/regression.test.ts
+++ b/tests/regression.test.ts
@@ -21,16 +21,5 @@ Deno.test(`Regression tests (${coin})`, async (t) => {
}
});
- await t.step("All releases sequentially (all tags in the release order, next)", async () => {
- tags.unshift("next");
-
- const walletInfo = await createWalletViaCli(coin, "cat", "koshka");
-
- for (const version of tags.toReversed()) {
- if (version !== "next" && version !== tags[0]) await prepareMoneroC(coin, version);
- await $`deno run -A ./tests/compare.ts ${coin} ${version} ${JSON.stringify(walletInfo)}`;
- }
- });
-
await Deno.remove("./tests/wallets", { recursive: true }).catch(() => {});
});