summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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(() => {});
});