mirror of
https://github.com/lewis6991/gitsigns.nvim
synced 2025-02-21 23:37:18 +00:00
- Make tests more asyn friendly and remove most of the magic sleeps - Break up into multiple files - Bypass cmake
13 lines
363 B
Lua
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')
|
|
|