Skip to content

Commit

Permalink
🩹 Fix Extension Tests launch configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Nov 11, 2023
1 parent a594aee commit 0fcf4cf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/test"
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"]
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"preLaunchTask": "build-tests"
}
]
}
15 changes: 15 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@
// "clear": true,
"close": true
}
},
{
"label": "build-tests",
"type": "npm",
"script": "compile-tests",
"problemMatcher": [],
"presentation": {
// "echo": true,
// "reveal": "silent",
// "focus": false,
// "panel": "new",
// "showReuseMessage": false,
// "clear": true,
"close": true
}
}
]
}
8 changes: 4 additions & 4 deletions test/data/align-codeowners/input-to-format
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
* @foo
/some-path @bar
another-path/but-loooooooooonger @baz
* @foo
/some-path @bar
another-path/but-loooooooooonger @baz

# a comment

# an indented comment
/docs/**/*.md @foo @bar
/docs/**/*.md @foo @bar
# /docs/**/*.rst @foo @bar

0 comments on commit 0fcf4cf

Please sign in to comment.