Skip to content

Commit 4e53298

Browse files
authored
Match MKC and include test files when sharing projects (#196)
1 parent 5acc46b commit 4e53298

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/web/shareLink.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ async function createShareLinkRequestAsync(workspace: vscode.WorkspaceFolder) {
3434
files[file] = content;
3535
}
3636

37+
for (const file of parsed.testFiles || []) {
38+
const content = await readTextFileAsync(vscode.Uri.joinPath(workspace.uri, file));
39+
files[file] = content;
40+
}
41+
3742
const target = await getAppTargetAsync(workspace)
3843

3944
const header = {

0 commit comments

Comments
 (0)