@elench/testkit 0.1.73 → 0.1.74

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.
@@ -214,6 +214,7 @@ function buildExecutionEnvWithContext(config, lease, extraEnv, processEnv) {
214
214
  const env = {
215
215
  ...inheritedEnv,
216
216
  ...resolveEnvTemplates(config.testkit.serviceEnv || {}, templateContext),
217
+ ...resolveEnvTemplates(config.testkit.local?.env || {}, templateContext),
217
218
  ...resolveEnvTemplates(extraEnv, templateContext),
218
219
  TESTKIT_ACTIVE: "1",
219
220
  ...(config.runtimeId ? { TESTKIT_RUNTIME_ID: String(config.runtimeId) } : {}),
@@ -164,10 +164,7 @@ describe("runner-template", () => {
164
164
  expect(
165
165
  buildExecutionEnv(
166
166
  resolved[1],
167
- {
168
- ...resolved[1].testkit.local.env,
169
- DATABASE_URL: "gone",
170
- },
167
+ { DATABASE_URL: "gone" },
171
168
  {
172
169
  PATH: "/usr/bin",
173
170
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/next-analysis",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
4
4
  "description": "SWC-backed Next.js source analysis primitives for Erench tools",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/testkit-bridge",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
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.73"
25
+ "@elench/testkit-protocol": "0.1.74"
26
26
  },
27
27
  "private": false
28
28
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/testkit-protocol",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
4
4
  "description": "Shared browser protocol for testkit bridge and extension consumers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/ts-analysis",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
4
4
  "description": "TypeScript compiler-backed source analysis primitives for Erench tools",
5
5
  "type": "module",
6
6
  "exports": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/testkit",
3
- "version": "0.1.73",
3
+ "version": "0.1.74",
4
4
  "description": "CLI for discovering and running local HTTP, DAL, and Playwright test suites",
5
5
  "type": "module",
6
6
  "workspaces": [
@@ -75,16 +75,16 @@
75
75
  "@elench/testkit-protocol"
76
76
  ],
77
77
  "devDependencies": {
78
- "@types/node": "^24.9.1",
79
78
  "@playwright/test": "^1.52.0",
79
+ "@types/node": "^24.9.1",
80
80
  "vitest": "^3.2.4"
81
81
  },
82
82
  "dependencies": {
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
83
  "@babel/code-frame": "^7.29.0",
84
+ "@elench/next-analysis": "0.1.74",
85
+ "@elench/testkit-bridge": "0.1.74",
86
+ "@elench/testkit-protocol": "0.1.74",
87
+ "@elench/ts-analysis": "0.1.74",
88
88
  "@oclif/core": "^4.10.6",
89
89
  "esbuild": "^0.25.11",
90
90
  "execa": "^9.5.0",