mirror of
https://github.com/zoriya/telescope.nvim.git
synced 2026-08-16 02:45:09 +00:00
13 lines
323 B
Lua
13 lines
323 B
Lua
-- Just skip on mac, it has flaky CI for some reason
|
|
if vim.fn.has "mac" == 1 or require("telescope.utils").iswin then
|
|
return
|
|
end
|
|
|
|
local tester = require "telescope.testharness"
|
|
|
|
describe("builtin.resume", function()
|
|
it("should select and open the file", function()
|
|
tester.run_file "resume__select_pos"
|
|
end)
|
|
end)
|