Skip to content

Commit 5ad98a5

Browse files
committed
OK RELOADING
1 parent 98af570 commit 5ad98a5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"description": "A VS Code Extension for analysis and optimization of Salesforce Flows. Scans metadata for 20+ issues such as hardcoded IDs, unsafe contexts, inefficient SOQL/DML operations, recursion risks, and missing fault handling. Supports auto-fixes, rule configurations, and tests integration.",
1212
"version": "1.8.3",
1313
"engines": {
14-
"vscode": "^1.99.1"
14+
"vscode": "^1.92.0"
1515
},
1616
"categories": [
1717
"Linters"

wdio.conf.mts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ export const config: Options.Testrunner = {
2727
capabilities: [
2828
{
2929
browserName: 'vscode',
30-
browserVersion: 'stable',
30+
browserVersion: 'stable', // also possible: "insiders" or a specific version e.g. "1.80.0"
3131
'wdio:vscodeOptions': {
3232
version: '1.92.0',
33-
extensionPath: path.resolve(__dirname, 'dist'),
33+
extensionPath: __dirname,
3434
workspacePath: __dirname,
3535
vscodeArgs: {
3636
profile: 'debug-profile',
@@ -39,7 +39,6 @@ export const config: Options.Testrunner = {
3939
},
4040
},
4141
],
42-
4342
logLevel: process.env.COVERAGE ? 'warn' : 'info',
4443

4544
bail: 0,

0 commit comments

Comments
 (0)