From 0c343b6606ac036b193ff0430cd305721e1ed17e Mon Sep 17 00:00:00 2001 From: Builder Date: Tue, 12 May 2026 16:20:54 -0400 Subject: [PATCH] Fix resume PDF path after file rename Co-authored-by: Cursor --- js/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index 47df017..b40b9d8 100644 --- a/js/app.js +++ b/js/app.js @@ -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 }]));