Language server for real-time testing diagnostics
Find a file
2024-09-29 00:54:01 +09:00
.github/workflows add GHA workflow for CI 2024-06-30 22:30:17 +09:00
.vim chore: update coc-settings 2024-08-04 18:29:57 +09:00
crates/adapter feat: implement phpunit adapter 2024-09-23 17:56:13 +09:00
demo chore: add vscode settings for debugging with vscode-tesitng-ls 2024-09-23 17:56:16 +09:00
doc docs: add documentation for adapter 2024-09-29 00:53:43 +09:00
src Merge pull request #35 from kbwo/feat/tmp-phpunit 2024-09-23 21:27:15 +09:00
.gitignore mvp 2024-05-07 00:08:27 +09:00
Cargo.lock feat: implement phpunit adapter 2024-09-23 17:56:13 +09:00
Cargo.toml feat: implement phpunit adapter 2024-09-23 17:56:13 +09:00
CONTRIBUTING.md feat: implement phpunit adapter 2024-09-23 17:56:13 +09:00
justfile mvp 2024-05-07 00:08:27 +09:00
LICENSE add license 2024-06-30 22:39:44 +09:00
README.md docs: update README 2024-09-29 00:54:01 +09:00

testing-language-server

General purpose LSP server that integrate with testing. The language server is characterized by portability and extensibility.

Motivation

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.

Instllation

cargo install testing-language-server
cargo install testing-ls-adapter

Features

  • Realtime testing diagnostics
  • More efficient checking of diagnostics
  • Adapter installation command
  • VSCode extension
  • Coc.nvim extension
  • NeoVim builtin LSP plugin

Configuration

language server config:

"languageserver": {
  "testing": {
    "command": "<server path>/testing-language-server",
    "trace.server": "verbose",
    "filetypes": [
      "rust",
      "javascript"
    ],
    "initializationOptions": {
      "initializationOptions": {
        "adapterCommand": {
          "cargo test": [
            {
              "path": "<adapter path>/testing-ls-adapter",
              "extra_args": ["--test-kind=cargo-test"],
              "include_pattern": ["**/*.rs"],
              "exclude_pattern": ["**/target/**"]
            }
          ],
          "jest": [
            {
              "path": "<adapter path>/testing-ls-adapter",
              "extra_args": ["--test-kind=jest"],
              "include_patterns": ["/**/*.js"],
              "exclude_patterns": ["/node_modules/**/*"]
            }
          ]
        }
      }
    }
  }
}

Adapter

  • cargo test
  • cargo nextest
  • jest
  • deno test
  • go test
  • phpunit
  • vitest

Writing custom adapter

⚠ The specification of adapter CLI is not stabilized yet.

See SPEC.md and spec.rs.