Add light-weight snapshot testing library with editor integration

This commit is contained in:
Aleksey Kladov 2020-06-27 17:53:50 +02:00
parent 491d000c27
commit 03c5a6690d
8 changed files with 357 additions and 5 deletions

View file

@ -60,6 +60,7 @@ export interface Runnable {
workspaceRoot?: string;
cargoArgs: string[];
executableArgs: string[];
expectTest?: boolean;
};
}
export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");