Files
telescope.nvim/lua/tests/pickers/find_files__scrolling_descending_cycle.lua
TJ DeVries 4725867ec6 fix: restore testing framework to actually work (#2070)
after refactor to some new asynchronous items for finders,
the tests stopped actually doing anything.

now they do things again.
2022-08-04 16:00:30 -04:00

13 lines
360 B
Lua

local tester = require "telescope.testharness"
local helper = require "telescope.testharness.helpers"
local runner = require "telescope.testharness.runner"
runner.picker("find_files", "telescope<c-n>", {
post_close = {
tester.not_ { "plugin/telescope.vim", helper.get_file },
},
}, {
sorting_strategy = "descending",
scroll_strategy = "cycle",
})