Skip to content

Commit 0149751

Browse files
committed
fix: errors
1 parent 44ef8db commit 0149751

File tree

3 files changed

+60
-9
lines changed

3 files changed

+60
-9
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
os: [macos-latest]
1515
node-version: [20.x]
1616
vscodeVersion:
17-
- stable
17+
- 1.93.0
1818

1919
runs-on: ${{ matrix.os }}
2020

package-lock.json

+50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
]
4141
},
4242
"configuration": {
43-
"title": "Testplane",
44-
"properties": {
45-
"testplane.configPath": {
46-
"markdownDescription": "The path to the Testplane [configuration file](https://testplane.io/docs/v8/config/main/)",
47-
"type": "string",
48-
"scope": "window"
49-
}
43+
"title": "Testplane",
44+
"properties": {
45+
"testplane.configPath": {
46+
"markdownDescription": "The path to the Testplane [configuration file](https://testplane.io/docs/v8/config/main/)",
47+
"type": "string",
48+
"scope": "window"
5049
}
50+
}
5151
}
5252
},
5353
"repository": {
@@ -60,7 +60,7 @@
6060
"build": "tsup --minify --clean",
6161
"watch": "tsup --watch --sourcemap",
6262
"test": "npm run lint && npm run test-e2e",
63-
"test-e2e": "npm run test-e2e:basic && npm run test-e2e:settings-view && npm run test-e2e:vscode-settings && npm run test-e2e:empty",
63+
"test-e2e": "concurrently -c 'auto' 'npm:test-e2e:basic' 'npm:test-e2e:settings-view' 'npm:test-e2e:vscode-settings' 'npm:test-e2e:empty'",
6464
"test-e2e:basic": "wdio run ./tests/e2e/basic/wdio.conf.ts",
6565
"test-e2e:settings-view": "wdio run ./tests/e2e/settings-view/wdio.conf.ts",
6666
"test-e2e:vscode-settings": "wdio run ./tests/e2e/vscode-settings/wdio.conf.ts",
@@ -88,6 +88,7 @@
8888
"@wdio/mocha-framework": "^8.40.3",
8989
"@wdio/spec-reporter": "^8.40.3",
9090
"birpc": "^0.2.17",
91+
"concurrently": "^9.0.1",
9192
"error-stack-parser": "^2.1.4",
9293
"eslint": "^8.56.0",
9394
"eslint-config-gemini-testing": "^3.0.0",

0 commit comments

Comments
 (0)