diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2022-03-30 09:59:27 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 09:59:27 +1100 |
| commit | 061090de7e95e8e7a97f3277bd1a72899ebd1570 (patch) | |
| tree | 85fbf3ed3dc4cf51a15c2baaf8257a47149c43ef /cli/tests/testdata/lsp | |
| parent | 4a0b2c28a15d76c0c40bf07c3753dfbcce4dace1 (diff) | |
feat(lsp): add experimental testing API (#13798)
Ref: denoland/vscode_deno#629
Diffstat (limited to 'cli/tests/testdata/lsp')
| -rw-r--r-- | cli/tests/testdata/lsp/initialize_params.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/cli/tests/testdata/lsp/initialize_params.json b/cli/tests/testdata/lsp/initialize_params.json index 9fd197fe4..b076f3b17 100644 --- a/cli/tests/testdata/lsp/initialize_params.json +++ b/cli/tests/testdata/lsp/initialize_params.json @@ -14,7 +14,7 @@ "references": true, "test": true }, - "config": "", + "config": null, "importMap": null, "lint": true, "suggest": { @@ -26,6 +26,12 @@ "hosts": {} } }, + "testing": { + "args": [ + "--allow-all" + ], + "enable": true + }, "tlsCertificate": null, "unsafelyIgnoreCertificateErrors": null, "unstable": false @@ -63,6 +69,9 @@ "workspace": { "configuration": true, "workspaceFolders": true + }, + "experimental": { + "testingApi": true } } } |
