mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
fix: util.parseArgs() missing node:process import (#22405)
fix parseArgs() not working due to missing import of node:process this commit fixes issue #22363
This commit is contained in:
parent
c1fac11dfa
commit
3c7057d583
2 changed files with 9 additions and 0 deletions
|
@ -315,3 +315,10 @@ Deno.test({
|
|||
);
|
||||
},
|
||||
});
|
||||
|
||||
Deno.test({
|
||||
name: "[util] parseArgs() with no args works",
|
||||
fn() {
|
||||
util.parseArgs({});
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue