You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
417 B
18 lines
417 B
// Jest Snapshot v1, https://goo.gl/fbAQLP |
|
|
|
exports[`Bash outputs json: Bash 1`] = ` |
|
"set -e |
|
fnm env --json > file.json" |
|
`; |
|
|
|
exports[`Fish outputs json: Fish 1`] = `"fnm env --json > file.json"`; |
|
|
|
exports[`PowerShell outputs json: PowerShell 1`] = ` |
|
"$ErrorActionPreference = "Stop" |
|
fnm env --json | Out-File file.json -Encoding UTF8" |
|
`; |
|
|
|
exports[`Zsh outputs json: Zsh 1`] = ` |
|
"set -e |
|
fnm env --json > file.json" |
|
`;
|
|
|