vedats-harness 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +28 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # vscode-ui-test-harness
2
+
3
+ Shared harness for Workbench UI automation. Provides:
4
+
5
+ - `step()` with artifact snapshots
6
+ - failure diagnostics (notifications, diagnostics, screenshots)
7
+ - Workbench DSL helpers
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "vedats-harness",
3
+ "version": "0.1.0",
4
+ "description": "Artifact-first Workbench UI test harness for VS Code extensions",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/futouyiba/vedats.git"
9
+ },
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "files": ["dist"],
13
+ "scripts": {
14
+ "build": "tsc -p tsconfig.json"
15
+ },
16
+ "exports": {
17
+ ".": "./dist/index.js"
18
+ },
19
+ "peerDependencies": {
20
+ "@wdio/globals": "^8.32.2",
21
+ "wdio-vscode-service": ">=6.1.0"
22
+ },
23
+ "devDependencies": {
24
+ "@wdio/globals": "^8.32.2",
25
+ "wdio-vscode-service": "^6.1.4",
26
+ "typescript": "^5.3.3"
27
+ }
28
+ }