braid-text 0.2.74 → 0.2.75
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/AI-README.md +4 -3
- package/package.json +1 -1
package/AI-README.md
CHANGED
|
@@ -12,7 +12,7 @@ Follow these steps to create a new release:
|
|
|
12
12
|
|
|
13
13
|
2. **Run Tests**
|
|
14
14
|
- Run `node test/test.js` - should show all 74 tests passing
|
|
15
|
-
- Run `node test/fuzz-test.js` - should
|
|
15
|
+
- Run `node test/fuzz-test.js` - runs 10,000 iterations (takes ~5-10 minutes), should complete with `best_n = Infinity @ NaN` indicating success
|
|
16
16
|
- Both tests must pass before proceeding
|
|
17
17
|
|
|
18
18
|
3. **Commit Changes**
|
|
@@ -38,9 +38,10 @@ Follow these steps to create a new release:
|
|
|
38
38
|
### test/fuzz-test.js
|
|
39
39
|
- Fuzz testing suite that generates random edits and verifies correctness
|
|
40
40
|
- Tests diamond-types integration and merge operations
|
|
41
|
-
- Runs 10,000 iterations by default
|
|
42
|
-
- Success indicated by `best_n = Infinity @ NaN` (no failures found)
|
|
41
|
+
- Runs 10,000 iterations by default (takes approximately 5-10 minutes)
|
|
42
|
+
- Success indicated by `best_n = Infinity @ NaN` at completion (no failures found)
|
|
43
43
|
- Run with: `node test/fuzz-test.js`
|
|
44
|
+
- Let it run to completion - do not interrupt
|
|
44
45
|
|
|
45
46
|
## Project Structure
|
|
46
47
|
|