summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-04-23 16:21:06 +0100
committerGitHub <noreply@github.com>2024-04-23 17:21:06 +0200
commit35220f0069931c6c4b9023c2d123f3b37f7e9c56 (patch)
treed8efdc6a83a99f94dd8989c98ff62f78a0bc319e /tests/integration
parentb0d3b20f2319ad346fe70b1114f492f852689435 (diff)
fix(workspace): provide workspace members as 'imports' in import map (#23492)
This commit changes the workspace support to provide all workspace members to be available as imports based on their names and versions. Closes https://github.com/denoland/deno/issues/23343
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/run_tests.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/integration/run_tests.rs b/tests/integration/run_tests.rs
index c298e4f5b..6419f6ff0 100644
--- a/tests/integration/run_tests.rs
+++ b/tests/integration/run_tests.rs
@@ -4918,35 +4918,6 @@ itest!(explicit_resource_management {
output: "run/explicit_resource_management/main.out",
});
-itest!(workspaces_basic {
- args: "run -L debug -A main.ts",
- output: "run/workspaces/basic/main.out",
- cwd: Some("run/workspaces/basic/"),
- copy_temp_dir: Some("run/workspaces/basic/"),
- envs: env_vars_for_npm_tests(),
- http_server: true,
-});
-
-itest!(workspaces_member_outside_root_dir {
- args: "run -A main.ts",
- output: "run/workspaces/member_outside_root_dir/main.out",
- cwd: Some("run/workspaces/member_outside_root_dir/"),
- copy_temp_dir: Some("run/workspaces/member_outside_root_dir/"),
- envs: env_vars_for_npm_tests(),
- http_server: true,
- exit_code: 1,
-});
-
-itest!(workspaces_nested_member {
- args: "run -A main.ts",
- output: "run/workspaces/nested_member/main.out",
- cwd: Some("run/workspaces/nested_member/"),
- copy_temp_dir: Some("run/workspaces/nested_member/"),
- envs: env_vars_for_npm_tests(),
- http_server: true,
- exit_code: 1,
-});
-
itest!(unsafe_proto {
args: "run -A run/unsafe_proto/main.js",
output: "run/unsafe_proto/main.out",