elasticdash-test 0.1.26-alpha-3 → 0.1.26-alpha-4

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.
@@ -53,6 +53,20 @@ Also read node_modules/elasticdash-test/docs/agent-integration-guide.md for tech
53
53
 
54
54
  **Do not continue until `ELASTICDASH_API_KEY` is set.** The SDK cannot connect to the backend without it.
55
55
 
56
+ **3. Set default SDK variables**
57
+
58
+ Add these to `.env` if they are not already present:
59
+
60
+ ```bash
61
+ ELASTICDASH_DEBUG=1
62
+ ELASTICDASH_CAPTURE_TRACE=0
63
+ ELASTICDASH_ACCEPT_RERUNS=1
64
+ ```
65
+
66
+ - `ELASTICDASH_DEBUG=1` — enables SDK debug logging, useful during initial setup
67
+ - `ELASTICDASH_CAPTURE_TRACE=0` — trace capture off by default (set to `1` when recording fixtures)
68
+ - `ELASTICDASH_ACCEPT_RERUNS=1` — allows the backend to push rerun requests to this SDK instance
69
+
56
70
  ### Phase 2: Scan the codebase
57
71
 
58
72
  Before creating any files, identify:
@@ -338,7 +338,9 @@ Set in `.env` or CI secrets:
338
338
  |----------|-------------|----------|
339
339
  | `ELASTICDASH_API_URL` | Backend server URL (`https://server.elasticdash.com` for cloud) | For upload/CI |
340
340
  | `ELASTICDASH_API_KEY` | Project API key from dashboard | For upload/CI |
341
- | `ELASTICDASH_CAPTURE_TRACE` | Set to `1` to record a trace fixture | For trace recording |
341
+ | `ELASTICDASH_DEBUG` | Set to `1` to enable SDK debug logging | Recommended during setup |
342
+ | `ELASTICDASH_CAPTURE_TRACE` | Set to `0` by default; `1` to record a trace fixture | For trace recording |
343
+ | `ELASTICDASH_ACCEPT_RERUNS` | Set to `1` to accept rerun requests from backend | Recommended |
342
344
  | `OPENAI_API_KEY` | OpenAI API key | If using OpenAI |
343
345
  | `ANTHROPIC_API_KEY` | Anthropic API key | If using Claude |
344
346
  | `GEMINI_API_KEY` | Google Gemini API key | If using Gemini |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elasticdash-test",
3
- "version": "0.1.26-alpha-3",
3
+ "version": "0.1.26-alpha-4",
4
4
  "description": "AI-native test runner for ElasticDash workflow testing",
5
5
  "type": "module",
6
6
  "bin": {