Skip to content

Commit

Permalink
feat: remove dead "deno.testing.enable" setting (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
nayeemrmn authored Sep 8, 2023
1 parent 2a45179 commit 46c9705
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,6 @@ extension has the following configuration options:
[ImportCompletions](./docs/ImportCompletions.md) for more information.)
- `deno.testing.args`: Arguments to use when running tests via the Test
Explorer. Defaults to `[ \"--allow-all\" ]`.
- `deno.testing.enable`: Enable the testing API for the language server. When
folder is Deno enabled, tests will be available in the Test Explorer view.
Defaults to `true`.
- `deno.unstable`: Controls if code will be type checked with Deno's unstable
APIs. This is the equivalent to using `--unstable` on the command line.
_boolean, default `false`_
Expand Down
5 changes: 1 addition & 4 deletions client/src/shared_types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,7 @@ export interface Settings {
hosts: Record<string, boolean>;
} | null;
} | null;
testing: {
args: string[];
enable: boolean;
} | null;
testing: { args: string[] } | null;
tlsCertificate: string | null;
unsafelyIgnoreCertificateErrors: string[] | null;
/** Determine if the extension should be type checking against the unstable
Expand Down
6 changes: 0 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -376,12 +376,6 @@
"markdownDescription": "Arguments to use when running tests via the Test Explorer. Defaults to `[ \"--allow-all\" ]`.",
"scope": "window"
},
"deno.testing.enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable the testing API for the language server. When folder is Deno enabled, tests will be available in the Test Explorer view.",
"scope": "window"
},
"deno.tlsCertificate": {
"type": "string",
"default": null,
Expand Down

0 comments on commit 46c9705

Please sign in to comment.