We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
go
{ '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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Whenever I run below configuration:
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)Issafalcon/neotest-dotnet#108
The text was updated successfully, but these errors were encountered: