mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-24 15:22:20 +10:00
feat: add semantic CSS stylesheets (#3274)
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Cursor Agent
parent
4ac19f81b3
commit
d2ffbf9618
@@ -2,11 +2,17 @@ import { readFileSync } from "node:fs";
|
||||
import { fileURLToPath } from "node:url";
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
const registry = readFileSync(fileURLToPath(new URL("./index.ts", import.meta.url)), "utf8");
|
||||
|
||||
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");
|
||||
});
|
||||
|
||||
it("exports the semantic manifest registry through the template index", () => {
|
||||
expect(registry).toContain("getTemplateSemanticManifest");
|
||||
expect(registry).toContain("getTemplateSemanticRegistryFingerprintInput");
|
||||
expect(registry).toContain("TemplateSemanticManifest");
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user