summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIm-Beast <franik.mateusz@gmail.com>2024-12-07 18:08:13 +0100
committerIm-Beast <franik.mateusz@gmail.com>2024-12-07 18:08:13 +0100
commitbff41ada014b546e1c7f4fc2bce194c264c4aad2 (patch)
tree22af11c47e7e6a0957797f98a568737851f6425d
parent2cd25fc60c1b04342b12f414bdf183bf9b658277 (diff)
tests: await downloading deps
-rwxr-xr-xtests/utils.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils.ts b/tests/utils.ts
index 60afdb5..7674e7e 100755
--- a/tests/utils.ts
+++ b/tests/utils.ts
@@ -68,13 +68,13 @@ export async function extract(path: string, out: string) {
}
export async function prepareMoneroCli() {
- downloadDependencies(moneroCliInfo);
+ await downloadDependencies(moneroCliInfo);
const path = join("./tests/dependencies", moneroCliInfo.outDir ?? "", getFileInfo(moneroCliInfo).name);
await extract(path, "./tests/dependencies/monero-cli/");
}
export async function prepareWowneroCli() {
- downloadDependencies(wowneroCliInfo);
+ await downloadDependencies(wowneroCliInfo);
const path = join("./tests/dependecies", wowneroCliInfo.outDir ?? "", getFileInfo(wowneroCliInfo).name);
await extract(path, "./tests/dependencies/wownero-cli/");
}