rename "check" test to "cli"

technically the corresponding item in the real code was renamed to
--lint, but that's the file we should use to write future tests.
This commit is contained in:
XeroOl 2025-05-01 14:16:03 -05:00
parent 1ac5d72a8e
commit 87439744b8
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
;; TODO refactor fennel-ls.check to avoid running end-to-end
;; (but keep/write at least some end-to-end tests)
(fn test-check []
(fn test-lint []
(let [input-file-name (os.tmpname)]
(doto (io.open input-file-name :w)
(: :write "(local x 1)")
@ -15,4 +15,4 @@
(os.remove input-file-name))
nil))
{: test-check}
{: test-lint}

View File

@ -27,4 +27,4 @@
:test.code-action
:test.rename
:test.misc
:test.check]))
:test.cli]))