Skip to content

Commit

Permalink
updated snapshots
Browse files Browse the repository at this point in the history
Signed-off-by: Pujal <[email protected]>
  • Loading branch information
pujal0909 committed Dec 16, 2024
1 parent 4dfe07f commit 48fb141
Showing 1 changed file with 91 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,100 @@ Use \\"imperative-test-cli config import --help\\" to view command description,
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the configuration 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the configuration 1`] = `
"profiles:
secured:
type: secured
properties:
info:
secure:
(empty array)
project_base:
type: base
properties:
secure:
- secret
global_base:
type: base
properties:
secure:
- secret
defaults:
secured: secured
base: project_base
autoStore: true
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the configuration without showing secure values 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the configuration without showing secure values 1`] = `
"profiles:
secured:
type: secured
properties:
info:
secure:
(empty array)
project_base:
type: base
properties:
secret: (secure value)
secure:
- secret
global_base:
type: base
properties:
secure:
- secret
defaults:
secured: secured
base: project_base
autoStore: true
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the defaults configuration property 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the defaults configuration property 1`] = `
"secured: secured
base: project_base
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the profiles configuration property 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the profiles configuration property 1`] = `
"secured:
type: secured
properties:
info:
secure:
(empty array)
project_base:
type: base
properties:
secure:
- secret
global_base:
type: base
properties:
secure:
- secret
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the root level property names only 1 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the root level property names only 1 1`] = `
"profiles
defaults
autoStore
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the root level property names only 2 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config list should list the root level property names only 2 1`] = `
"profiles
defaults
autoStore
"
`;

exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config profiles should list profiles 1`] = `""`;
exports[`Imperative Secure Tests Imperative Test CLI Secure Tests imperative-test-cli config profiles should list profiles 1`] = `
"secured
project_base
global_base
"
`;

0 comments on commit 48fb141

Please sign in to comment.