fix(test): remove some tests

This commit is contained in:
Barrett Ruth 2025-09-19 00:34:29 -04:00
parent db6d28353a
commit f4b588c1ab
2 changed files with 9 additions and 46 deletions

View file

@ -395,9 +395,15 @@ describe('cp test panel', function()
diffthis = function() end,
}
vim.cmd = setmetatable(cmd_table, {
__call = function(_, cmd_str) return end,
__index = function(_, key) return cmd_table[key] end,
__newindex = function(_, key, value) cmd_table[key] = value end,
__call = function(_, cmd_str)
return
end,
__index = function(_, key)
return cmd_table[key]
end,
__newindex = function(_, key, value)
cmd_table[key] = value
end,
})
end
vim.cmd.diffthis = function()