Skip to content

Commit 73fcf95

Browse files
committed
Correct extension paths used for tests
1 parent ff28f8d commit 73fcf95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/runFeatureTests.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 the extension test runner script
1717
// Passed to --extensionTestsPath

test/runIntegrationTests.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 the extension test runner script
1717
// Passed to --extensionTestsPath

0 commit comments

Comments
 (0)