mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
Fix tests
It seems like Travis changed their infrastructure. We need to unset SSH_TTY and SSH_CLIENT to get the tests working again.
This commit is contained in:
parent
b16c0d51d6
commit
d1cd83bf0b
1 changed files with 10 additions and 0 deletions
|
@ -21,6 +21,11 @@ function tearDown() {
|
|||
}
|
||||
|
||||
function testContextSegmentDoesNotGetRenderedWithDefaultUser() {
|
||||
# Fix leaked state for travis
|
||||
unset POWERLEVEL9K_CONTEXT_ALWAYS_SHOW
|
||||
unset SSH_CLIENT
|
||||
unset SSH_TTY
|
||||
|
||||
local DEFAULT_USER=$(whoami)
|
||||
local POWERLEVEL9K_CUSTOM_WORLD='echo world'
|
||||
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||
|
@ -99,6 +104,11 @@ function testContextSegmentIsShownIfDefaultUserIsSetWhenForced() {
|
|||
}
|
||||
|
||||
function testContextSegmentIsShownIfForced() {
|
||||
# Fix leaked state for travis
|
||||
unset POWERLEVEL9K_CONTEXT_ALWAYS_SHOW
|
||||
unset SSH_CLIENT
|
||||
unset SSH_TTY
|
||||
|
||||
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
||||
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context)
|
||||
local POWERLEVEL9K_ALWAYS_SHOW_USER=true
|
||||
|
|
Loading…
Reference in a new issue