1/* 2* check.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 "check", 12 [], 13 [ 14 noErrorsOrWarnings, 15 printsMessage({level: "INFO", regex: /Version: 99\.9\.9/}), 16 ], 17); 18 19