1/* 2* install-tools.test.ts 3* 4* Copyright (C) 2020-2022 Posit Software, PBC 5* 6*/ 7import { testQuartoCmd } from "../../test.ts"; 8import { noErrorsOrWarnings, printsMessage } from "../../verify.ts"; 9 10testQuartoCmd( 11 "tools", 12 ["list"], 13 [ 14 noErrorsOrWarnings, 15 printsMessage({level: "INFO", regex: /tinytex\s+/}), 16 // printsMessage({level: "INFO", regex: /chromium\s+/}), 17 // temporarily disabled until we get puppeteer back 18 ], 19); 20 21