1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 15:00:06 +08:00
SpaceVim/bundle/plenary.nvim/lua/plenary/async_lib/tests.lua
2022-05-16 22:20:10 +08:00

15 lines
268 B
Lua

local a = require "plenary.async_lib.async"
local util = require "plenary.async_lib.util"
local M = {}
M.describe = function(s, func)
describe(s, util.will_block(a.future(func)))
end
M.it = function(s, func)
it(s, util.will_block(a.future(func)))
end
return M