@elench/testkit 0.1.72 → 0.1.73
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/lib/runner/template-steps.mjs +10 -0
- package/node_modules/@elench/next-analysis/package.json +1 -1
- package/node_modules/@elench/testkit-bridge/package.json +2 -2
- package/node_modules/@elench/testkit-protocol/package.json +1 -1
- package/node_modules/@elench/ts-analysis/package.json +1 -1
- package/package.json +5 -5
|
@@ -29,7 +29,12 @@ const CONFIG_NEXT_TSCONFIG_ENTRY = path.join(
|
|
|
29
29
|
"config-api",
|
|
30
30
|
"next-runtime-tsconfig.mjs"
|
|
31
31
|
);
|
|
32
|
+
const DRIZZLE_ENTRY = path.join(PACKAGE_ROOT, "lib", "drizzle", "index.mjs");
|
|
33
|
+
const ENV_ENTRY = path.join(PACKAGE_ROOT, "lib", "env", "index.mjs");
|
|
34
|
+
const PLAYWRIGHT_ENTRY = path.join(PACKAGE_ROOT, "lib", "playwright", "index.mjs");
|
|
32
35
|
const RUNTIME_ENTRY = path.join(PACKAGE_ROOT, "lib", "runtime", "index.mjs");
|
|
36
|
+
const VITEST_ENTRY = path.join(PACKAGE_ROOT, "lib", "vitest", "index.mjs");
|
|
37
|
+
const DISCOVERY_ENTRY = path.join(PACKAGE_ROOT, "lib", "discovery", "index.mjs");
|
|
33
38
|
const KNOWN_FAILURES_ENTRY = path.join(PACKAGE_ROOT, "lib", "known-failures", "index.mjs");
|
|
34
39
|
const MODULE_RUNNER_ENTRY = path.join(
|
|
35
40
|
PACKAGE_ROOT,
|
|
@@ -252,7 +257,12 @@ function resolvePackageSubpath(specifier) {
|
|
|
252
257
|
if (!subpath) return ROOT_ENTRY;
|
|
253
258
|
if (subpath === "/config") return CONFIG_ENTRY;
|
|
254
259
|
if (subpath === "/config/next-runtime-tsconfig") return CONFIG_NEXT_TSCONFIG_ENTRY;
|
|
260
|
+
if (subpath === "/drizzle") return DRIZZLE_ENTRY;
|
|
261
|
+
if (subpath === "/env") return ENV_ENTRY;
|
|
262
|
+
if (subpath === "/playwright") return PLAYWRIGHT_ENTRY;
|
|
255
263
|
if (subpath === "/runtime") return RUNTIME_ENTRY;
|
|
264
|
+
if (subpath === "/vitest") return VITEST_ENTRY;
|
|
265
|
+
if (subpath === "/discovery") return DISCOVERY_ENTRY;
|
|
256
266
|
if (subpath === "/known-failures") return KNOWN_FAILURES_ENTRY;
|
|
257
267
|
|
|
258
268
|
throw new Error(`Unsupported @elench/testkit import "${specifier}" while loading template step`);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elench/testkit-bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.73",
|
|
4
4
|
"description": "Browser bridge helpers for testkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@elench/testkit-protocol": "0.1.
|
|
25
|
+
"@elench/testkit-protocol": "0.1.73"
|
|
26
26
|
},
|
|
27
27
|
"private": false
|
|
28
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elench/testkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.73",
|
|
4
4
|
"description": "CLI for discovering and running local HTTP, DAL, and Playwright test suites",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"workspaces": [
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"vitest": "^3.2.4"
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@elench/next-analysis": "0.1.
|
|
84
|
-
"@elench/ts-analysis": "0.1.
|
|
85
|
-
"@elench/testkit-bridge": "0.1.
|
|
86
|
-
"@elench/testkit-protocol": "0.1.
|
|
83
|
+
"@elench/next-analysis": "0.1.73",
|
|
84
|
+
"@elench/ts-analysis": "0.1.73",
|
|
85
|
+
"@elench/testkit-bridge": "0.1.73",
|
|
86
|
+
"@elench/testkit-protocol": "0.1.73",
|
|
87
87
|
"@babel/code-frame": "^7.29.0",
|
|
88
88
|
"@oclif/core": "^4.10.6",
|
|
89
89
|
"esbuild": "^0.25.11",
|