Files
resume/index.test.ts
Art Rosnovsky 61ac46d7df chore: refactor & improve (#2)
* chore: update resume PDF
* feat: baseline resume
2024-02-05 10:49:22 -08:00

20 lines
566 B
TypeScript

import assert from 'node:assert';
import { describe, it } from "node:test";
export const markdownFilePath = "./resume.md";
export const outputFilePath = "output/art_rosnovsky_software_engineer.pdf";
describe("generatePdf", () => {
it("should throw an error if the markdown file does not exist", async () => {
assert(true)
});
it("should throw an error if the mdToPdf function fails", async () => {
assert(true)
});
it("should successfully convert the markdown to a pdf and write it to the output file", async () => {
assert(true)
});
});