gitsigns.nvim/test/preload.lua
Lewis Russell d22de18f9d Rework testsuite
- Make tests more asyn friendly and remove most of the magic sleeps
- Break up into multiple files
- Bypass cmake
2021-06-23 11:41:48 +01:00

13 lines
363 B
Lua

-- Modules loaded here will not be cleared and reloaded by Busted.
-- Busted started doing this to help provide more isolation.
local global_helpers = require('test.helpers')
-- Bypoass CI behaviour logic
global_helpers.isCI = function(_)
return false
end
local helpers = require('test.functional.helpers')(nil)
local gs_helpers = require('test.gs_helpers')