mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 22:00:07 +08:00
13 lines
338 B
Lua
13 lines
338 B
Lua
|
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]]
|
||
|
end)
|
||
|
end)
|