1/* 2* ojs-runs.ts 3* 4* puppeteer testing utils 5* 6* Copyright (C) 2021-2022 Posit Software, PBC 7* 8*/ 9 10import { join } from "../src/deno_ral/path.ts"; 11 12export function localFileURL(path: string) { 13 const match = path.match(/^(.+)\.[^.]+$/)!; 14 const base = match[1]; 15 return `file://${join(Deno.cwd(), base)}.html`; 16} 17 18