diff --git a/cypress/e2e/site.cy.js b/cypress/e2e/site.cy.js index aa3f2d9..6bb491d 100644 --- a/cypress/e2e/site.cy.js +++ b/cypress/e2e/site.cy.js @@ -37,9 +37,6 @@ context("site", () => { cy.get("a[href='https://www.linkedin.com/in/clint-plummer/']").should( "exist" ); - // .then(($anchor) => { - // cy.request($anchor.attr("href")).its("status").should("eq", 200); - // }); }); }); diff --git a/resume/resume-transform.py b/resume/resume-transform.py index 443c9e1..c0924af 100644 --- a/resume/resume-transform.py +++ b/resume/resume-transform.py @@ -47,7 +47,7 @@ def run(self): import json resume = json.load(open(self.input()['resume'].path)) - # TODO: not a big fan of the hard coded path concatenation here + # FIXME: not a big fan of the hard coded path concatenation here # this should be refactored to be more dynamic subprocess.run(["node", "url2pdf.cjs", resume['basics'] ['url'] + '/resume', self.output().path])