Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

neotest-dotnet dosent work witn neotest-jest #122

Open
Tantol opened this issue Jun 3, 2024 · 0 comments
Open

neotest-dotnet dosent work witn neotest-jest #122

Tantol opened this issue Jun 3, 2024 · 0 comments

Comments

@Tantol
Copy link

Tantol commented Jun 3, 2024

Whenever I run below configuration:

  {
    'nvim-neotest/neotest',
    dependencies = {
      'nvim-neotest/nvim-nio',
      'nvim-lua/plenary.nvim',
      'antoinemadec/FixCursorHold.nvim',
      'nvim-treesitter/nvim-treesitter',
      'Issafalcon/neotest-dotnet',
      'nvim-neotest/neotest-jest',
    },
    config = function()
      require('neotest').setup {
        adapters = {
          require 'neotest-jest',
          require 'neotest-dotnet',
        },
      }
    end,
  },

I get communicate "No test found" when trying to run dotnet tests. Jest tests runs without any problem.

In ex. below configuration works with dotnet tests (with go adapter)

  {
    'nvim-neotest/neotest',
    dependencies = {
      'nvim-neotest/nvim-nio',
      'nvim-lua/plenary.nvim',
      'antoinemadec/FixCursorHold.nvim',
      'nvim-treesitter/nvim-treesitter',
      'Issafalcon/neotest-dotnet',
      'nvim-neotest/neotest-go',
    },
    config = function()
      require('neotest').setup {
        adapters = {
          require 'neotest-go',
          require 'neotest-dotnet',
        },
      }
    end,
  },

Issafalcon/neotest-dotnet#108

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant