diff --git a/test/check.fnl b/test/cli.fnl similarity index 94% rename from test/check.fnl rename to test/cli.fnl index 273c674..ed7f279 100644 --- a/test/check.fnl +++ b/test/cli.fnl @@ -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} diff --git a/test/init.fnl b/test/init.fnl index c4fcac0..a109e2e 100644 --- a/test/init.fnl +++ b/test/init.fnl @@ -27,4 +27,4 @@ :test.code-action :test.rename :test.misc - :test.check])) + :test.cli]))