Skip to content

Commit 7719378

Browse files
committed
workaround
1 parent bf3c896 commit 7719378

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

test/bash_it/bash_it.bats

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ function local_setup_file() {
88
# don't load any libraries as the tests here test the *whole* kit
99
}
1010

11+
function local_setup() {
12+
: "${PROMPT_COMMAND:=}" "${BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE:=}"
13+
}
14+
1115
@test "bash-it: verify that the test fixture is available" {
1216
assert_file_exist "${BASH_IT?}/aliases/available/a.aliases.bash"
1317
assert_file_exist "${BASH_IT?}/aliases/available/b.aliases.bash"

test/completion/bash-it.completion.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function __check_completion() {
3636

3737
# Word index of the last word
3838
COMP_CWORD=$(( ${#COMP_WORDS[@]} - 1 ))
39-
39+
COMP_WORDS+=('') # arg
4040
# Run the Bash-it completion function
4141
_bash-it
4242

test/lib/helpers.bats

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ function local_setup_file() {
77
}
88

99
function local_setup() {
10+
: "${BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE:=}"
1011
# Copy the test fixture to the Bash-it folder
1112
cp -RP "${BASH_IT?}/test/fixtures/bash_it"/* "${BASH_IT?}/"
1213
}

test/lib/preexec.bats

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ load ../test_helper
66
function local_setup {
77
setup_test_fixture
88
export __bp_enable_subshells=yas
9+
export HISTCONTROL=""
910
}
1011

1112
@test "vendor preexec: __bp_install_after_session_init() without existing" {

test/lib/utilities.bats

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ load "${MAIN_BASH_IT_DIR?}/test/test_helper.bash"
44

55
function local_setup_file() {
66
setup_libs "helpers"
7+
# shellcheck disable=SC2034
8+
BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=""
79
}
810

911
@test "_bash-it-component-item-is-enabled() - for a disabled item" {

0 commit comments

Comments
 (0)