comment out config override step in pytest-bdd since it's not implemented yet

This commit is contained in:
Jonathan Wren 2021-09-25 17:29:02 -07:00
parent 0c6cb58d25
commit a9e421649e

View file

@ -12,8 +12,9 @@ Feature: Implementing Runtime Overrides for Select Configuration Keys
Given we use the config "basic_encrypted.yaml"
And we use the password "test" if prompted
When we run "jrnl --decrypt --config-override highlight false --config-override editor nano"
Then the config should have "highlight" set to "bool:false"
And no editor should have been called
# @todo implement this step in pytest (doesn't currently support overrides)
# Then the config should contain "highlight: false"
Then the editor should not have been called
Scenario: Override configured linewrap with a value of 23
@ -36,6 +37,8 @@ Feature: Implementing Runtime Overrides for Select Configuration Keys
# @todo implement this step in pytest (doesn't currently support overrides)
@skip
Scenario: Override color selections with runtime overrides
Given we use the config "basic_encrypted.yaml"
And we use the password "test" if prompted
@ -43,6 +46,8 @@ Feature: Implementing Runtime Overrides for Select Configuration Keys
Then the config should have "colors.body" set to "blue"
# @todo implement this step in pytest (doesn't currently support overrides)
@skip
Scenario: Apply multiple config overrides
Given we use the config "basic_encrypted.yaml"
And we use the password "test" if prompted