mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2025-12-06 06:46:10 +00:00
after refactor to some new asynchronous items for finders, the tests stopped actually doing anything. now they do things again.
13 lines
360 B
Lua
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",
|
|
})
|