Skip to content

Commit 517eca8

Browse files
priyanshu92Copilot
andcommitted
Fix integration test extension root path
- Correct extensionDevelopmentPath in desktop integration tests. - Correct extensionDevelopmentPath in common integration tests. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c3554e8 commit 517eca8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/test/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async function main() {
1111
try {
1212
// The folder containing the Extension Manifest package.json
1313
// Passed to `--extensionDevelopmentPath`
14-
const extensionDevelopmentPath = path.resolve(__dirname, "../../../../");
14+
const extensionDevelopmentPath = path.resolve(__dirname, "../../../");
1515
// The path to test runner
1616
// Passed to --extensionTestsPath
1717
const extensionTestsPath = path.resolve(

src/common/test/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async function main() {
1111
try {
1212
// The folder containing the Extension Manifest package.json
1313
// Passed to `--extensionDevelopmentPath`
14-
const extensionDevelopmentPath = path.resolve(__dirname, "../../../../");
14+
const extensionDevelopmentPath = path.resolve(__dirname, "../../../");
1515

1616
// The path to test runner
1717
// Passed to --extensionTestsPath

0 commit comments

Comments
 (0)