💥 Removed neotest, way too heavy

This commit is contained in:
z3rOR0ne 2022-09-09 09:00:21 -07:00
parent 7ddce8d193
commit f242916255
2 changed files with 0 additions and 18 deletions

View file

@ -147,23 +147,6 @@ for _, lsp in ipairs(servers) do
}
end
-- neotest setup
require('neotest').setup({
adapters = {
require('neotest-jest')({
jestCommand = "npm test --",
jestConfigFile = "custom.jest.config.ts",
env = { CI = true },
cwd = function(path)
return vim.fn.getcwd()
end,
}),
require('neotest-python'),
}
})
require('neotest').run.run()
-- Nvim_Tree configuration: -- setup with all defaults
-- each of these are documented in `:help nvim-tree.OPTION_NAME`
require'nvim-tree'.setup { -- BEGIN_DEFAULT_OPTS

View file

@ -52,5 +52,4 @@ require('packer').startup(function()
use 'sbdchd/neoformat' -- general formatter for various languages
use 'rhysd/vim-clang-format' -- formatter for c and c++
use { 'sindrets/diffview.nvim', requires = 'nvim-lua/plenary.nvim' }
use {'nvim-neotest/neotest', requires = { 'nvim-lua/plenary.nvim', 'nvim-treesitter/nvim-treesitter', 'antoinemadec/FixCursorHold.nvim', 'haydenmeade/neotest-jest', 'nvim-neotest/neotest-python',}}
end)