summaryrefslogtreecommitdiff
path: root/lua/tests
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2021-02-27 15:06:04 -0500
committerGitHub <noreply@github.com>2021-02-27 21:06:04 +0100
commit11674ac021e39f92eb51d2884904b0300c5133a3 (patch)
treeced317f650b35b9ea7466097a730f76740de1725 /lua/tests
parentca92ec1a830a61a0b88fff925f2146ab46e0f7c9 (diff)
feat: multi selection. Only integrates with send_selected_to_qflist (#551)
This will not yet work with select actions. More work is needed in that case. Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
Diffstat (limited to 'lua/tests')
-rw-r--r--lua/tests/automated/pickers/scrolling_spec.lua3
-rw-r--r--lua/tests/automated/scroller_spec.lua3
2 files changed, 6 insertions, 0 deletions
diff --git a/lua/tests/automated/pickers/scrolling_spec.lua b/lua/tests/automated/pickers/scrolling_spec.lua
index ab82378..1a86822 100644
--- a/lua/tests/automated/pickers/scrolling_spec.lua
+++ b/lua/tests/automated/pickers/scrolling_spec.lua
@@ -2,6 +2,9 @@ require('plenary.reload').reload_module('telescope')
local tester = require('telescope.pickers._test')
+local log = require('telescope.log')
+log.use_console = false
+
describe('scrolling strategies', function()
it('should handle cycling for full list', function()
tester.run_file [[find_files__scrolling_descending_cycle]]
diff --git a/lua/tests/automated/scroller_spec.lua b/lua/tests/automated/scroller_spec.lua
index c650aac..7c2a557 100644
--- a/lua/tests/automated/scroller_spec.lua
+++ b/lua/tests/automated/scroller_spec.lua
@@ -1,5 +1,8 @@
local p_scroller = require('telescope.pickers.scroller')
+local log = require('telescope.log')
+log.use_console = false
+
local eq = assert.are.same
describe('scroller', function()