Path: blob/main/tests/smoke/jupyter/issue-11990.test.ts
6468 views
/*1* issue-11990.test.ts2*3* https://github.com/quarto-dev/quarto-cli/issues/119904*5* Copyright (C) 2025 Posit Software, PBC6*/78import { join } from "../../../src/deno_ral/path.ts";9import { docs, outputForInput } from "../../utils.ts";10import { noErrorsOrWarnings, ensureFileRegexMatches } from "../../verify.ts";11import { testRender } from "../render/render.ts";1213const format = "html";14const input = docs(join("jupyter", "parameters", "issue-11990.qmd"));15const output = outputForInput(input, format);1617testRender(input, format, false, [18noErrorsOrWarnings,19ensureFileRegexMatches(output.outputPath, [], [20"Injected Parameters"21]),22], {}, ["--no-execute-daemon", "--execute-param", "username:John"]);232425