From 14522fc62886b95431f62d5bd21d70cfaac780ee Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Fri, 8 Sep 2023 12:47:57 +0100 Subject: chore(lsp): remove TestingSettings::enable (#20407) --- cli/lsp/config.rs | 6 ------ cli/lsp/repl.rs | 5 +---- 2 files changed, 1 insertion(+), 10 deletions(-) (limited to 'cli') diff --git a/cli/lsp/config.rs b/cli/lsp/config.rs index 6d47d9502..4aafe0238 100644 --- a/cli/lsp/config.rs +++ b/cli/lsp/config.rs @@ -252,17 +252,12 @@ pub struct TestingSettings { /// a workspace. #[serde(default)] pub args: Vec, - /// Enable or disable the testing API if the client is capable of supporting - /// the testing API. - #[serde(default = "is_true")] - pub enable: bool, } impl Default for TestingSettings { fn default() -> Self { Self { args: vec!["--allow-all".to_string(), "--no-check".to_string()], - enable: true, } } } @@ -971,7 +966,6 @@ mod tests { }, testing: TestingSettings { args: vec!["--allow-all".to_string(), "--no-check".to_string()], - enable: true }, tls_certificate: None, unsafely_ignore_certificate_errors: None, diff --git a/cli/lsp/repl.rs b/cli/lsp/repl.rs index 6c820701c..c21e2e3fb 100644 --- a/cli/lsp/repl.rs +++ b/cli/lsp/repl.rs @@ -308,9 +308,6 @@ pub fn get_repl_workspace_settings() -> WorkspaceSettings { hosts: HashMap::from([("https://deno.land".to_string(), true)]), }, }, - testing: TestingSettings { - args: vec![], - enable: false, - }, + testing: TestingSettings { args: vec![] }, } } -- cgit v1.2.3