@rulvar/testing 1.3.1 → 1.3.2

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 +27 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @rulvar/testing
2
+
3
+ The rulvar test harness: `createTestEngine` and the deterministic
4
+ `FakeAdapter` for fast typed unit tests, VCR cassettes with secret
5
+ redaction, replay-strict runs that fail on any unexpected live call, and
6
+ matchers for Vitest and Jest. Also exports `record`, `replay`, and
7
+ `replayRun`.
8
+
9
+ Part of [rulvar](https://rulvar.com), an embeddable TypeScript engine
10
+ for durable, budget-bounded multi-agent LLM workflows, where a completed
11
+ LLM call is never paid for twice. Full documentation:
12
+ [docs.rulvar.com](https://docs.rulvar.com).
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ pnpm add -D @rulvar/testing
18
+ ```
19
+
20
+ ## Documentation
21
+
22
+ - [Testing](https://docs.rulvar.com/guide/testing)
23
+ - [API reference](https://docs.rulvar.com/api/%40rulvar/testing/)
24
+
25
+ ## License
26
+
27
+ [Apache-2.0](https://github.com/o-stepper/rulvar/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/testing",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "rulvar test harness: createTestEngine, FakeAdapter, VCR cassettes, replay-strict runs, matchers.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -26,7 +26,7 @@
26
26
  "access": "public"
27
27
  },
28
28
  "dependencies": {
29
- "@rulvar/core": "1.3.1"
29
+ "@rulvar/core": "1.3.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.20.0",