Fix resume PDF path after file rename

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Builder 2026-05-12 16:20:54 -04:00
parent 6e5f21093d
commit 0c343b6606

View File

@ -7,8 +7,7 @@
const specs = Array.isArray(data.specs) && data.specs.length
? data.specs
: [{ id: 'portfolio', file: 'portfolio.spec.ts', describe: data.suite.name }];
/** Canonical resume file (sync with repo `assets/ilia-dobkin-resume.pdf`). */
const RESUME_PDF = 'assets/ilia-dobkin-resume.pdf';
const RESUME_PDF = 'assets/DobkinResume26.pdf';
// Test state: idle | running | passed | skipped
const state = Object.fromEntries(tests.map(t=>[t.id, { status: t.skip ? 'skipped' : t.fail ? 'failed' : 'idle', runtime:0 }]));