Skip to content

Commit

Permalink
Use stable vscode
Browse files Browse the repository at this point in the history
Old vscode version has node < 20, which isn't supported by the wdio local runner
  • Loading branch information
ilia-db committed Oct 16, 2024
1 parent 944559c commit 31ec252
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/databricks-vscode/src/test/e2e/wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const WORKSPACE_PATH = path.resolve(tmpdir(), "test-root");

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const {version, name, engines} = packageJson;
const {version, name} = packageJson;

const EXTENSION_DIR = path.resolve(tmpdir(), "extension test", "extension");
const VSIX_PATH = path.resolve(
Expand Down Expand Up @@ -148,7 +148,7 @@ export const config: Options.Testrunner = {
capabilities: [
{
"browserName": "vscode",
"browserVersion": engines.vscode.replace("^", ""),
"browserVersion": "stable",
"wdio:vscodeOptions": {
extensionPath: path.resolve(
__dirname,
Expand Down

0 comments on commit 31ec252

Please sign in to comment.