-
Notifications
You must be signed in to change notification settings - Fork 683
Expand file tree
/
Copy pathhelp.test.ts.snap
More file actions
61 lines (46 loc) · 1.93 KB
/
help.test.ts.snap
File metadata and controls
61 lines (46 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`CLI Tool Tests should display help for "lockfile-explorer --help" 1`] = `
"usage: lockfile-explorer [-h] [-d] [--subspace SUBSPACE_NAME]
Lockfile Explorer is a desktop app for investigating and solving version
conflicts in a PNPM workspace.
Optional arguments:
-h, --help Show this help message and exit.
-d, --debug Show the full call stack if an error occurs while
executing the tool
--subspace SUBSPACE_NAME
Specifies an individual Rush subspace to check. The
default value is \\"default\\".
[1mFor detailed help about a specific command, use: lockfile-explorer
<command> -h[22m
"
`;
exports[`CLI Tool Tests should display help for "lockfile-lint --help" 1`] = `
"usage: lockfile-lint [-h] <command> ...
Lockfile Lint applies configured policies to find and report dependency
issues in your PNPM workspace.
Positional arguments:
<command>
init Create a new lockfile-lint.json config file
check Check and report dependency issues in your workspace
Optional arguments:
-h, --help Show this help message and exit.
[1mFor detailed help about a specific command, use: lockfile-lint <command>
-h[22m
"
`;
exports[`CLI Tool Tests should display help for "lockfile-lint check --help" 1`] = `
"usage: lockfile-lint check [-h]
This command applies the policies that are configured in lockfile-lint.json,
reporting any problems found in your PNPM workspace.
Optional arguments:
-h, --help Show this help message and exit.
"
`;
exports[`CLI Tool Tests should display help for "lockfile-lint init --help" 1`] = `
"usage: lockfile-lint init [-h]
This command initializes a new lockfile-lint.json config file. The created
template file includes source code comments that document the settings.
Optional arguments:
-h, --help Show this help message and exit.
"
`;