We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2734c70 commit e058b56Copy full SHA for e058b56
src/console_results.sh
@@ -14,7 +14,6 @@ function console_results::render_result() {
14
15
if env::is_simple_output_enabled; then
16
progress::blank_line
17
- progress::blank_line
18
fi
19
20
local total_tests=0
src/runner.sh
@@ -48,10 +48,16 @@ function runner::load_bench_files() {
48
runner::clean_set_up_and_tear_down_after_script
49
done
50
}
51
-
52
function runner::spinner() {
+ if env::is_simple_output_enabled; then
53
+ printf "\n"
54
+ fi
55
+
56
local delay=0.1
57
local spin_chars="|/-\\"
58
59
+ trap 'printf "\r \r"' EXIT
60
61
while true; do
62
for ((i=0; i<${#spin_chars}; i++)); do
63
printf "\r%s" "${spin_chars:$i:1}"
0 commit comments