summaryrefslogtreecommitdiff
path: root/tests/regression.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regression.test.ts')
-rwxr-xr-xtests/regression.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regression.test.ts b/tests/regression.test.ts
index 2a0d369..82a9f95 100755
--- a/tests/regression.test.ts
+++ b/tests/regression.test.ts
@@ -17,7 +17,7 @@ Deno.test(`Regression tests (${coin})`, async (t) => {
const walletInfo = await createWalletViaCli(coin, "dog", "sobaka");
for (const version of ["next", latestTag, "next"]) {
- await $`deno run -A ./tests/compare.ts ${version} ${JSON.stringify(walletInfo)}`;
+ await $`deno run -A ./tests/compare.ts ${coin} ${version} ${JSON.stringify(walletInfo)}`;
}
});
@@ -28,7 +28,7 @@ Deno.test(`Regression tests (${coin})`, async (t) => {
for (const version of tags.toReversed()) {
if (version !== "next" && version !== tags[0]) await getMoneroC(coin, version);
- await $`deno run -A ./tests/compare.ts ${version} ${JSON.stringify(walletInfo)}`;
+ await $`deno run -A ./tests/compare.ts ${coin} ${version} ${JSON.stringify(walletInfo)}`;
}
await Deno.remove("./tests/wallets", { recursive: true }).catch(() => {});