Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill write-test명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | write-test |
| description | > Use when this capability is needed. |
Use this skill when you add new tests or modify existing JETLS test code.
Test code for new language server features should be written in files that
define independent module spaces with a test_ prefix. Include those files
from test/runtests.jl.
This lets each test file run independently from the REPL.
For example, test/test_completions.jl should look like:
module test_completions
using Test
...
end # module test_completions
Then include it from test/runtests.jl like this:
@testset "JETLS.jl" begin
...
@testset "completions" include("test_completions.jl")
...
end
Use @testset "testset name" to organize tests cleanly.
For code clarity, avoid placing using, import, or struct definitions
inside @testset blocks unless it is specifically necessary.
Prefer top-level definitions.
Use let blocks to avoid unintentionally reusing names across test cases,
unless a helper function or do block already provides local scope.
Example:
module test_completions
using Test
using JETLS: some_completion_func
function testcase_util(s::AbstractString)
...
end
function with_testcase(s::AbstractString)
...
end
@testset "some_completion_func" begin
let s = "..."
ret = some_completion_func(testcase_util(s))
@test test_with(ret)
end
let s = "..."
ret = some_completion_func(testcase_util(s))
@test test_with(ret)
end
with_testcase(s) do case
ret = some_completion_func(case)
@test test_with(ret)
end
end
end # module test_completions
Testing language server functionality is challenging. To fully test such functionality, you need to start a server loop and send requests that mimic realistic user interactions.
For those tests, use withserver from
test/setup.jl.
Refer to test/test_full_lifecycle.jl
as an example.
A good pattern is test/test_definition.jl:
it keeps the full withserver coverage to one request/response sanity test
for the DidOpen → analysis → DefinitionRequest path, while most cases use
definition_test to call find_definition directly and assert on returned
locations. Prefer this split for LSP handlers.
When you add or modify tests, use the run-test
workflow to run the most specific relevant test command.
Source: aviatesk/JETLS.jl — distributed by TomeVault.