diff options
| author | Im-Beast <franik.mateusz@gmail.com> | 2024-12-07 18:08:13 +0100 |
|---|---|---|
| committer | Im-Beast <franik.mateusz@gmail.com> | 2024-12-07 18:08:13 +0100 |
| commit | bff41ada014b546e1c7f4fc2bce194c264c4aad2 (patch) | |
| tree | 22af11c47e7e6a0957797f98a568737851f6425d | |
| parent | 2cd25fc60c1b04342b12f414bdf183bf9b658277 (diff) | |
tests: await downloading deps
| -rwxr-xr-x | tests/utils.ts | 4 |
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/"); } |
