Skip to content

Commit

Permalink
test(exec): update node link
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Dec 29, 2024
1 parent ed723bd commit 6d2a9d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/ExecTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 6d2a9d0

Please sign in to comment.