mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-24 23:32:19 +10:00
feat: add new resume template "Scizor"
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { readFileSync } from "node:fs";
|
||||
import { fileURLToPath } from "node:url";
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
describe("templatePages", () => {
|
||||
it("registers Scizor as a renderable template page", () => {
|
||||
const registry = readFileSync(fileURLToPath(new URL("./index.ts", import.meta.url)), "utf8");
|
||||
|
||||
expect(registry).toContain('import { ScizorPage } from "./scizor/ScizorPage";');
|
||||
expect(registry).toContain("scizor: ScizorPage");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user