From 6d2a9d05c7d90257c4dd2f8d49f8adae6c59718c Mon Sep 17 00:00:00 2001 From: jlenon7 Date: Sat, 28 Dec 2024 22:01:40 -0300 Subject: [PATCH] test(exec): update node link --- tests/unit/ExecTest.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/unit/ExecTest.ts b/tests/unit/ExecTest.ts index b71ea3a..3fbc58f 100644 --- a/tests/unit/ExecTest.ts +++ b/tests/unit/ExecTest.ts @@ -220,7 +220,10 @@ export default class ExecTest { @Test() public async shouldBeAbleToDownloadFiles({ assert }: Context) { - const file = await Exec.download(Path.storage('downloads/node.pkg'), 'https://nodejs.org/dist/latest/node.pkg') + const file = await Exec.download( + Path.storage('downloads/node.pkg'), + 'https://nodejs.org/dist/v23.5.0/node-23.5.0.pkg' + ) assert.equal(file.base, 'node.pkg') assert.isTrue(await File.exists(file.path))