Path: blob/main/tests/smoke/render/render-date.test.ts
12921 views
/*1* render-date.test.ts2*3* Copyright (C) 2020-2022 Posit Software, PBC4*5*/6import { docs, outputForInput } from "../../utils.ts";7import { ensureFileRegexMatches } from "../../verify.ts";8import { testRender } from "./render.ts";910const tests = [11{ input: docs("date/today.qmd"), noMatch: />today</ },12{ input: docs("date/lastmodified.qmd"), noMatch: />last-modified</ },13{ input: docs("date/fr.qmd"), match: /octobre/, noMatch: /October/ },14{ input: docs("date/fr-FR.qmd"), match: /octobre/, noMatch: /October/ },15{ input: docs("date/fr-CA.qmd"), match: /octobre/, noMatch: /October/ },16];1718tests.forEach((test) => {19const to = "html";20const output = outputForInput(test.input, "html");2122const noMatch = test.noMatch ? [test.noMatch] : [];23const match = test.match ? [test.match] : [];2425testRender(test.input, to, false, [26ensureFileRegexMatches(output.outputPath, match, noMatch),27]);28});293031