diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-07-19 15:55:30 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-07-19 15:55:30 +0800 |
commit | 0108cc7c485a2885976d33e2da9419b97223e66e (patch) | |
tree | 09bba6d187a1d1a0967e6ac201718c7b194b56bd /test.lua | |
parent | 38beb846ea216dbca75174692f142fb215d9f896 (diff) | |
download | lua-language-server-0108cc7c485a2885976d33e2da9419b97223e66e.zip |
cleanup test codes
Diffstat (limited to 'test.lua')
-rw-r--r-- | test.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -82,12 +82,14 @@ local function main() --log.print = true - TESTURI = furi.encode('/unittest.lua') + TESTROOT = ROOT:string() .. '/test_root/' + TESTROOTURI = furi.encode(TESTROOT) + TESTURI = furi.encode(TESTROOT .. 'unittest.lua') ---@async lclient():start(function (client) client:registerFakers() - local rootUri = furi.encode '/' + local rootUri = furi.encode(TESTROOT) client:initialize { rootUri = rootUri, } |