summaryrefslogtreecommitdiff
path: root/tests/regression.test.ts
diff options
context:
space:
mode:
authorIm-Beast <franik.mateusz@gmail.com>2024-10-15 16:38:49 +0200
committerIm-Beast <franik.mateusz@gmail.com>2024-10-15 16:38:49 +0200
commita455f83ee41b8d07faaaa8ecf351445b34e5a94f (patch)
treea7237d42bb1e783b4ddbc3462bc0e4ef150e70fc /tests/regression.test.ts
parentab0d28c576dedf37ef40eec1feeab8b0540f2e00 (diff)
actually load wownero when specified
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(() => {});