You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: release v1.0.1 with t-wise support, constraint fixes, and coverage engine improvements
- Refactor coverage engine with ForEachTuple helper and overflow-safe tuple counting
- Fix greedy algorithm constraint-aware fallback
- Add full Unicode escape support to CLI JSON parser
- Mirror all C++ changes in TypeScript engine
- Add t-wise strength parameter to JS API
- Update bilingual documentation
- Bump TypeScript target to ES2022 for Object.hasOwn support
- Bump version to 1.0.1
Copy file name to clipboardExpand all lines: docs/en/introduction.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ coverwise is built as a **test design API**, not just a generation tool:
69
69
-**Stateless** — `generate(input) → output`, no session management
70
70
-**Decomposable** — Separate functions for generate, analyze, extend
71
71
-**Explainable** — Every result includes coverage proof and uncovered tuples in human-readable format
72
-
-**Deterministic** — Same input + seed = same output, every time
72
+
-**Deterministic** — Same input + seed = same output, every time (within the same engine; WASM and Pure TS use different RNG algorithms, so the same seed may produce different test orderings across engines while maintaining identical coverage)
Copy file name to clipboardExpand all lines: docs/en/js-api.md
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Both styles share the same WASM singleton and are interchangeable.
24
24
25
25
## `init()`
26
26
27
-
Initialize the WASM module. Must be called before any other function. Safe to call multiple times — the module loads only once.
27
+
Initialize the WASM module. Must be called before any other function. Safe to call multiple times — the module loads only once. If initialization fails (e.g., WASM file not found), subsequent calls will retry instead of caching the failure.
28
28
29
29
```typescript
30
30
asyncfunction init():Promise<void>
@@ -44,8 +44,8 @@ function generate(input: GenerateInput): GenerateResult
44
44
interface GenerateInput {
45
45
parameters: Parameter[]; // Required. At least 1 parameter.
0 commit comments