feat(voyage)!: rename commands, templates, fixtures for v4.0.0 [skip-docs]
This commit is contained in:
parent
a975c9943c
commit
47a4ad47d8
23 changed files with 99 additions and 98 deletions
|
|
@ -9,7 +9,7 @@
|
|||
//
|
||||
// This test exercises the Jaccard PIPELINE on a known input. It does NOT
|
||||
// measure real-LLM determinism — that is deferred to v1.1, see
|
||||
// tests/fixtures/ultrareview/README.md.
|
||||
// tests/fixtures/trekreview/README.md.
|
||||
|
||||
import { test } from 'node:test';
|
||||
import { strict as assert } from 'node:assert';
|
||||
|
|
@ -35,8 +35,8 @@ function loadFindings(rel) {
|
|||
}
|
||||
|
||||
test('review determinism — Jaccard of fixture run-A vs run-B meets SC4 threshold (0.70)', () => {
|
||||
const a = loadFindings('tests/fixtures/ultrareview/review-run-A.md');
|
||||
const b = loadFindings('tests/fixtures/ultrareview/review-run-B.md');
|
||||
const a = loadFindings('tests/fixtures/trekreview/review-run-A.md');
|
||||
const b = loadFindings('tests/fixtures/trekreview/review-run-B.md');
|
||||
const jaccard = jaccardSimilarity(a, b);
|
||||
assert.ok(
|
||||
jaccard >= SC4_THRESHOLD,
|
||||
|
|
@ -46,7 +46,7 @@ test('review determinism — Jaccard of fixture run-A vs run-B meets SC4 thresho
|
|||
});
|
||||
|
||||
test('review determinism — finding IDs are 40-char hex', () => {
|
||||
for (const rel of ['tests/fixtures/ultrareview/review-run-A.md', 'tests/fixtures/ultrareview/review-run-B.md']) {
|
||||
for (const rel of ['tests/fixtures/trekreview/review-run-A.md', 'tests/fixtures/trekreview/review-run-B.md']) {
|
||||
const findings = loadFindings(rel);
|
||||
for (const id of findings) {
|
||||
assert.ok(
|
||||
|
|
@ -58,7 +58,7 @@ test('review determinism — finding IDs are 40-char hex', () => {
|
|||
});
|
||||
|
||||
test('review determinism — no duplicate IDs within run', () => {
|
||||
for (const rel of ['tests/fixtures/ultrareview/review-run-A.md', 'tests/fixtures/ultrareview/review-run-B.md']) {
|
||||
for (const rel of ['tests/fixtures/trekreview/review-run-A.md', 'tests/fixtures/trekreview/review-run-B.md']) {
|
||||
const findings = loadFindings(rel);
|
||||
assert.strictEqual(
|
||||
new Set(findings).size,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue