Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/lsp_ext.ts')
| -rw-r--r-- | editors/code/src/lsp_ext.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index ca8106371b..9a7a4aae95 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts @@ -83,7 +83,11 @@ export type TestItem = { range?: lc.Range | undefined; runnable?: Runnable | undefined; }; -export type DiscoverTestResults = { tests: TestItem[]; scope: string[] }; +export type DiscoverTestResults = { + tests: TestItem[]; + scope: string[] | undefined; + scopeFile: lc.TextDocumentIdentifier[] | undefined; +}; export type TestState = | { tag: "failed"; message: string } | { tag: "passed" } |