mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-22 21:00:51 +02:00
test: registries, budgets and suite reconciled for Aside-first with the $B fallback
Touchfiles + E2E tiers gain the Aside keys, coverage matrix and eval baselines updated, size budget re-baselined to parity-baseline-v1.80.0.0.json (the contract plus fallback ride in every browsing skill), parity ceilings ratcheted with measured values, LLM-judge prompts and the E2E fixtures speak Aside-first, browse-fallback. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
@@ -49,7 +49,9 @@ const GATE_PATTERNS = [
|
||||
function trackedTestFiles(): string[] {
|
||||
const out = spawnSync('git', ['ls-files', '*.test.ts'], { cwd: ROOT, encoding: 'utf-8', timeout: 30_000 });
|
||||
if (out.status !== 0) throw new Error(`git ls-files failed: ${out.stderr}`);
|
||||
return out.stdout.split('\n').filter(Boolean);
|
||||
// The index still lists a file deleted in the working tree until the
|
||||
// deletion is staged; scan what is actually on disk.
|
||||
return out.stdout.split('\n').filter((f) => f && fs.existsSync(path.join(ROOT, f)));
|
||||
}
|
||||
|
||||
describe('paid orphan tripwire', () => {
|
||||
|
||||
Reference in New Issue
Block a user