mirror of
https://github.com/kemko/resume.git
synced 2026-01-01 15:55:47 +03:00
20 lines
566 B
TypeScript
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)
|
|
});
|
|
});
|