diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-02-29 19:12:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 19:12:04 +0000 |
commit | fb31ae73e40896c1d1dfdb26c265222f49907d32 (patch) | |
tree | f113a07ecf0dd54f7df38b5b3c1f7f481b581498 /tests/integration/mod.rs | |
parent | a9aef0d017bd053d7f4014c363dbc5898ced1a2e (diff) |
feat(unstable): `deno add` subcommand (#22520)
This commit adds "deno add" subcommand that has a basic support for
adding "jsr:" packages to "deno.json" file.
This currently doesn't support "npm:" specifiers and specifying version
constraints.
Diffstat (limited to 'tests/integration/mod.rs')
-rw-r--r-- | tests/integration/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/mod.rs b/tests/integration/mod.rs index 89a66385e..9253cae32 100644 --- a/tests/integration/mod.rs +++ b/tests/integration/mod.rs @@ -50,6 +50,8 @@ mod node_compat_tests; mod node_unit_tests; #[path = "npm_tests.rs"] mod npm; +#[path = "pm_tests.rs"] +mod pm; #[path = "publish_tests.rs"] mod publish; |