aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/lsp_ext.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-06-27 16:53:50 +0100
committerAleksey Kladov <[email protected]>2020-06-27 18:22:31 +0100
commit03c5a6690d943e48ac5b5464c2ac2fd054ea6251 (patch)
treeffb971e1d7647f9c72a24210f63b265ebae23c23 /editors/code/src/lsp_ext.ts
parent491d000c27676305cc7d5d734d4476cf731b7940 (diff)
Add light-weight snapshot testing library with editor integration
Diffstat (limited to 'editors/code/src/lsp_ext.ts')
-rw-r--r--editors/code/src/lsp_ext.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts
index e16ea799c..fdb99956b 100644
--- a/editors/code/src/lsp_ext.ts
+++ b/editors/code/src/lsp_ext.ts
@@ -60,6 +60,7 @@ export interface Runnable {
60 workspaceRoot?: string; 60 workspaceRoot?: string;
61 cargoArgs: string[]; 61 cargoArgs: string[];
62 executableArgs: string[]; 62 executableArgs: string[];
63 expectTest?: boolean;
63 }; 64 };
64} 65}
65export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables"); 66export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");