We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5acc46b commit 4e53298Copy full SHA for 4e53298
1 file changed
src/web/shareLink.ts
@@ -34,6 +34,11 @@ async function createShareLinkRequestAsync(workspace: vscode.WorkspaceFolder) {
34
files[file] = content;
35
}
36
37
+ for (const file of parsed.testFiles || []) {
38
+ const content = await readTextFileAsync(vscode.Uri.joinPath(workspace.uri, file));
39
+ files[file] = content;
40
+ }
41
+
42
const target = await getAppTargetAsync(workspace)
43
44
const header = {
0 commit comments