From 6c25b071e1e4e248c3825e43f11f32c578ca5428 Mon Sep 17 00:00:00 2001 From: Hassan Sufi Date: Thu, 8 Jan 2026 22:41:58 +0000 Subject: [PATCH] Match MKC and include test files when sharing projects --- src/web/shareLink.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/web/shareLink.ts b/src/web/shareLink.ts index a03394c..e48b062 100644 --- a/src/web/shareLink.ts +++ b/src/web/shareLink.ts @@ -34,6 +34,11 @@ async function createShareLinkRequestAsync(workspace: vscode.WorkspaceFolder) { files[file] = content; } + for (const file of parsed.testFiles || []) { + const content = await readTextFileAsync(vscode.Uri.joinPath(workspace.uri, file)); + files[file] = content; + } + const target = await getAppTargetAsync(workspace) const header = {