File tree 5 files changed +9
-1
lines changed
5 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ function local_setup_file() {
8
8
# don't load any libraries as the tests here test the *whole* kit
9
9
}
10
10
11
+ function local_setup() {
12
+ : " ${PROMPT_COMMAND:= } " " ${BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE:= } "
13
+ }
14
+
11
15
@test " bash-it: verify that the test fixture is available" {
12
16
assert_file_exist " ${BASH_IT?} /aliases/available/a.aliases.bash"
13
17
assert_file_exist " ${BASH_IT?} /aliases/available/b.aliases.bash"
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ function __check_completion() {
36
36
37
37
# Word index of the last word
38
38
COMP_CWORD=$(( ${# COMP_WORDS[@]} - 1 ))
39
-
39
+ COMP_WORDS+=( ' ' ) # arg
40
40
# Run the Bash-it completion function
41
41
_bash-it
42
42
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ function local_setup_file() {
7
7
}
8
8
9
9
function local_setup() {
10
+ : " ${BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE:= } "
10
11
# Copy the test fixture to the Bash-it folder
11
12
cp -RP " ${BASH_IT?} /test/fixtures/bash_it" /* " ${BASH_IT?} /"
12
13
}
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ load ../test_helper
6
6
function local_setup {
7
7
setup_test_fixture
8
8
export __bp_enable_subshells=yas
9
+ export HISTCONTROL=" "
9
10
}
10
11
11
12
@test " vendor preexec: __bp_install_after_session_init() without existing" {
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ load "${MAIN_BASH_IT_DIR?}/test/test_helper.bash"
4
4
5
5
function local_setup_file() {
6
6
setup_libs " helpers"
7
+ # shellcheck disable=SC2034
8
+ BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=" "
7
9
}
8
10
9
11
@test " _bash-it-component-item-is-enabled() - for a disabled item" {
You can’t perform that action at this time.
0 commit comments