You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.9 KiB

6 months ago
6 months ago
  1. return {
  2. "nvim-neotest/neotest",
  3. event = "VeryLazy",
  4. dependencies = {
  5. "nvim-lua/plenary.nvim",
  6. "nvim-treesitter/nvim-treesitter",
  7. "antoinemadec/FixCursorHold.nvim",
  8. "nvim-neotest/nvim-nio",
  9. -- Adapters
  10. "tovijaeschke/neotest-phpunit",
  11. "nvim-neotest/neotest-go",
  12. 'nvim-neotest/neotest-jest',
  13. },
  14. config = function()
  15. local neotest = require("neotest")
  16. local keymap = vim.keymap
  17. keymap.set("n", "<leader>tr", function()
  18. neotest.run.run()
  19. end, { desc = "Run neotest on current function" })
  20. keymap.set("n", "<leader>tR", function()
  21. neotest.run.run_last()
  22. end, { desc = "Run neotest on most recent test" })
  23. keymap.set("n", "<leader>tS", function()
  24. neotest.run.stop()
  25. end, { desc = "Stop running tests" })
  26. keymap.set("n", "<leader>ta", function()
  27. neotest.run.attach()
  28. end, { desc = "Attach to the currently running test" })
  29. keymap.set("n", "<leader>to", function()
  30. neotest.output.open()
  31. end, { desc = "Open the output of the test" })
  32. keymap.set("n", "<leader>ts", function()
  33. neotest.summary.toggle()
  34. end, { desc = "Toggle neotest summary pane" })
  35. local neotest_ns = vim.api.nvim_create_namespace("neotest")
  36. vim.diagnostic.config({
  37. virtual_text = {
  38. format = function(diagnostic)
  39. local message =
  40. diagnostic.message:gsub("\n", " "):gsub("\t", " "):gsub("%s+", " "):gsub("^%s+", "")
  41. return message
  42. end,
  43. },
  44. }, neotest_ns)
  45. vim.env.PROJECT_ROOT = vim.fn.getcwd() .. "/backend/"
  46. vim.env.ENV_PATH = vim.fn.getcwd() .. "/backend/.env"
  47. neotest.setup({
  48. adapters = {
  49. require("neotest-phpunit")({
  50. root_files = { "phpunit.xml", "composer.json" },
  51. phpunit_cmd = { "docker", "compose", "exec", "fpm", "./vendor/bin/phpunit" },
  52. -- phpunit_cmd = { "docker", "compose", "exec", "app-fpm", "./vendor/bin/phpunit" },
  53. filter_dirs = { "vendor" },
  54. mapped_docker_dir = "/var/www",
  55. append_to_cwd = "/api",
  56. }),
  57. require("neotest-go")({
  58. root = function()
  59. return './backend'
  60. end,
  61. experimental = {
  62. test_table = true,
  63. },
  64. args = { "-count=1", "-timeout=60s" },
  65. }),
  66. require('neotest-jest')({
  67. jestCommand = "npm test --",
  68. env = { CI = true },
  69. cwd = function(path)
  70. return vim.fn.getcwd()
  71. end,
  72. }),
  73. },
  74. })
  75. end,
  76. }