Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBabak K. Shandiz <babak.k.shandiz@gmail.com>2022-04-01 17:07:33 +0300
committerGitHub <noreply@github.com>2022-04-01 17:07:33 +0300
commit7fc55261aa6672a336bc7438abd76dda5789707a (patch)
tree65f3c96879932e80e7fddd0e507d2e59ef7f548c /.vscode/launch.json
parent62ace5901dfa8b5a0fd93c14f4841db99791c94c (diff)
Ask user to select PR templates when forking a repository (#143733)
* Add getPullRequestTemplates method to discover templates Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Add method to quick pick for PR templates Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Handle possible PR templates Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Remove unnecessary return value assignment Co-authored-by: João Moreno <mail@joaomoreno.com> * Change comparison operands' order Co-authored-by: João Moreno <mail@joaomoreno.com> * Remove sorting template URIs in pickPullRequestTemplate Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Sort template URIs before showing quick-pick list Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Rename getPullRequestTemplates method to findPullRequestTemplates Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Find Github PR templates in-parallel using readdir/stat Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Export method for visibitliy in tests Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Add tests for Github PR template detection Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Add launcher configration to run Github tests Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * :lipstick: * Replace stat with readDirectory for OS native case sensitivity Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Delete some files to avoid duplicate names on case insensitive envs Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> * Exclude deleted files from test case expected result Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com> Co-authored-by: João Moreno <mail@joaomoreno.com> Co-authored-by: João Moreno <joao.moreno@microsoft.com>
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 84affe5f920..dd295c02db4 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -117,6 +117,24 @@
{
"type": "extensionHost",
"request": "launch",
+ "name": "VS Code Github Tests",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "${workspaceFolder}/extensions/github/testWorkspace",
+ "--extensionDevelopmentPath=${workspaceFolder}/extensions/github",
+ "--extensionTestsPath=${workspaceFolder}/extensions/github/out/test"
+ ],
+ "outFiles": [
+ "${workspaceFolder}/extensions/github/out/**/*.js"
+ ],
+ "presentation": {
+ "group": "5_tests",
+ "order": 6
+ }
+ },
+ {
+ "type": "extensionHost",
+ "request": "launch",
"name": "VS Code API Tests (single folder)",
"runtimeExecutable": "${execPath}",
"args": [