Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/smoke/env/check.test.ts
12921 views
1
/*
2
* check.test.ts
3
*
4
* Copyright (C) 2020-2022 Posit Software, PBC
5
*
6
*/
7
import { testQuartoCmd } from "../../test.ts";
8
import { noErrorsOrWarnings, printsMessage } from "../../verify.ts";
9
10
testQuartoCmd(
11
"check",
12
[],
13
[
14
noErrorsOrWarnings,
15
printsMessage({level: "INFO", regex: /Version: 99\.9\.9/}),
16
],
17
);
18
19