Skip to content

Commit 230694f

Browse files
committed
fix: typo
1 parent c717004 commit 230694f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

esbuild-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ const watch = process.argv.includes("--watch");
55

66
async function main() {
77
const ctx = await esbuild.context({
8-
entryPoints: ["src/test/suit/index.ts"],
8+
entryPoints: ["src/test/suite/index.ts"],
99
bundle: true,
1010
format: "cjs",
1111
minify: production,
1212
sourcemap: !production,
1313
sourcesContent: false,
1414
platform: "node",
15-
outfile: "out/test/suit/index.js",
15+
outfile: "out/test/suite/index.js",
1616
external: ["vscode", "jsonc-parser"],
1717
logLevel: "silent",
1818
plugins: [

test/runTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function main() {
1212
// Passed to --extensionTestsPath
1313
const extensionTestsPath = path.resolve(
1414
__dirname,
15-
"../out/test/suit/index",
15+
"../out/test/suite/index",
1616
);
1717

1818
// Download VS Code, unzip it and run the integration test

0 commit comments

Comments
 (0)