mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-24 17:03:55 +10:00
feat: add new resume template "Scizor"
This commit is contained in:
@@ -18,6 +18,7 @@ describe("templateSchema", () => {
|
||||
"onyx",
|
||||
"pikachu",
|
||||
"rhyhorn",
|
||||
"scizor",
|
||||
];
|
||||
for (const t of validTemplates) {
|
||||
expect(templateSchema.safeParse(t).success).toBe(true);
|
||||
@@ -46,6 +47,6 @@ describe("templateSchema", () => {
|
||||
|
||||
it("includes 14 templates", () => {
|
||||
const validTemplates = templateSchema.options;
|
||||
expect(validTemplates).toHaveLength(14);
|
||||
expect(validTemplates).toHaveLength(15);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -15,6 +15,7 @@ export const templateSchema = z.enum([
|
||||
"onyx",
|
||||
"pikachu",
|
||||
"rhyhorn",
|
||||
"scizor",
|
||||
]);
|
||||
|
||||
export type Template = z.infer<typeof templateSchema>;
|
||||
|
||||
Reference in New Issue
Block a user