@orkestrel/test 0.0.18 → 0.0.20
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.
- package/dist/src/browser/index.d.ts +526 -16
- package/dist/src/browser/index.js +760 -47
- package/dist/src/browser/index.js.map +1 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"description": "The test helpers the Orkestrel fleet repeats — a call recorder, a real delay, JSON and async collectors, an owned scratch directory with a source-file walker, and a browser journey layer that drives real interfaces by role and accessible name. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://github.com/orkestrel/test#readme",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"check:src:core": "tsc --noEmit -p configs/src/tsconfig.core.json",
|
|
63
63
|
"check:src:browser": "tsc --noEmit -p configs/src/tsconfig.browser.json",
|
|
64
64
|
"check:src:server": "tsc --noEmit -p configs/src/tsconfig.server.json",
|
|
65
|
-
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:guides",
|
|
65
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:setup:browser && npm run test:guides",
|
|
66
66
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:browser --project src:server",
|
|
67
67
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
68
68
|
"test:src:browser": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:browser",
|
|
@@ -80,7 +80,8 @@
|
|
|
80
80
|
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
|
|
81
81
|
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
82
82
|
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
83
|
-
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
|
|
83
|
+
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup",
|
|
84
|
+
"test:setup:browser": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup:browser"
|
|
84
85
|
},
|
|
85
86
|
"dependencies": {
|
|
86
87
|
"@orkestrel/contract": "^0.0.17"
|
|
@@ -89,8 +90,8 @@
|
|
|
89
90
|
"@microsoft/api-extractor": "^7.59.1",
|
|
90
91
|
"@orkestrel/guide": "^0.0.20",
|
|
91
92
|
"@orkestrel/probe": "^0.0.16",
|
|
92
|
-
"@orkestrel/scaffold": "^0.0.
|
|
93
|
-
"@types/node": "^26.6.
|
|
93
|
+
"@orkestrel/scaffold": "^0.0.76",
|
|
94
|
+
"@types/node": "^26.6.2",
|
|
94
95
|
"@vitest/browser-playwright": "^4.1.11",
|
|
95
96
|
"oxfmt": "^0.68.0",
|
|
96
97
|
"oxlint": "^1.83.0",
|