Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/unit/schema-validation/format-pandoc-from-file-simple-tests.test.ts
6450 views
1
import { ensureSchemaResources } from "../../../src/core/schema/yaml-schema.ts";
2
import { getFormatSchema } from "../../../src/core/lib/yaml-schema/format-schemas.ts";
3
import { yamlValidationUnitTest } from "./utils.ts";
4
5
yamlValidationUnitTest("execute-validation", async () => {
6
ensureSchemaResources();
7
8
await getFormatSchema("html");
9
});
10
11