summaryrefslogtreecommitdiff
path: root/test.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-01-18 21:04:47 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-01-18 21:04:47 +0800
commit8464f80bf6e013abe0c0e8b05645e2ce474d82f1 (patch)
tree9a09c25743003b79d93b2d881e73b5fc8896625c /test.lua
parentfbdfcb59b261672454aee34d486e7f06b5a5d114 (diff)
downloadlua-language-server-8464f80bf6e013abe0c0e8b05645e2ce474d82f1.zip
add log
Diffstat (limited to 'test.lua')
-rw-r--r--test.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/test.lua b/test.lua
index 2cdb8c5e..c69aa2ca 100644
--- a/test.lua
+++ b/test.lua
@@ -1,3 +1,4 @@
+local files = require "files"
package.path = package.path
.. ';./test/?.lua'
.. ';./test/?/init.lua'
@@ -84,6 +85,12 @@ local function main()
ws.awaitReady()
+ print('Loaded files in', os)
+ for uri in files.eachFile() do
+ print(uri)
+ end
+ print('===============')
+
testAll()
end)
end