Crates.io | testing-language-server |
lib.rs | testing-language-server |
version | 0.1.2 |
source | src |
created_at | 2024-05-23 14:26:17.71436 |
updated_at | 2024-11-10 06:53:45.190095 |
description | LSP server for testing |
homepage | |
repository | |
max_upload_size | |
id | 1249564 |
size | 304,327 |
General purpose LSP server that integrate with testing. The language server is characterized by portability and extensibility.
This LSP server is heavily influenced by the following tools
These tools are very useful and powerful. However, they depend on the execution environment, such as VSCode and Neovim, and the portability aspect was inconvenient for me. So, I designed this testing-language-server and its dedicated adapters for each test tool to be the middle layer to the parts that depend on each editor.
This design makes it easy to view diagnostics from tests in any editor. Environment-dependent features like neotest and VSCode's built-in testing tools can also be achieved with minimal code using testing-language-server.
cargo install testing-language-server
cargo install testing-ls-adapter
You need to prepare .testingls.toml. See this for an example of the configuration.
enableWorkspaceDiagnostics = true
[adapterCommand.cargo-test]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=cargo-test"]
include = ["/**/src/**/*.rs"]
exclude = ["/**/target/**"]
[adapterCommand.cargo-nextest]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=cargo-nextest"]
include = ["/**/src/**/*.rs"]
exclude = ["/**/target/**"]
[adapterCommand.jest]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=jest"]
include = ["/jest/*.js"]
exclude = ["/jest/**/node_modules/**/*"]
[adapterCommand.vitest]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=vitest"]
include = ["/vitest/*.test.ts", "/vitest/config/**/*.test.ts"]
exclude = ["/vitest/**/node_modules/**/*"]
[adapterCommand.deno]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=deno"]
include = ["/deno/*.ts"]
exclude = []
[adapterCommand.go]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=go-test"]
include = ["/**/*.go"]
exclude = []
[adapterCommand.node-test]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=node-test"]
include = ["/node-test/*.test.js"]
exclude = []
[adapterCommand.phpunit]
path = "testing-ls-adapter"
extra_arg = ["--test-kind=phpunit"]
include = ["/**/*Test.php"]
exclude = ["/phpunit/vendor/**/*.php"]
Install from VSCode Marketplace. You can see the example in settings.json.
Install from :CocInstall coc-testing-ls
.
You can see the example in See more example
local lspconfig = require('lspconfig')
local configs = require('lspconfig.configs')
local util = require "lspconfig/util"
configs.testing_ls = {
default_config = {
cmd = { "testing-language-server" },
filetypes = {},
root_dir = util.root_pattern(".testingls.toml", ".git" ),
},
docs = {
description = [[
https://github.com/kbwo/testing-language-server
Language Server for real-time testing.
]],
},
}
lspconfig.testing_ls.setup{}
See language.toml.
The array wrapper has been removed to simplify the configuration structure. Please update your settings accordingly.
cargo test
cargo nextest
jest
deno test
go test
phpunit
vitest
node --test
(Node Test Runner)⚠ The specification of adapter CLI is not stabilized yet.
See ADAPTER_SPEC.md and spec.rs.