diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-03-26 16:21:02 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-03-26 16:21:02 +0800 |
commit | 387c750b96f404a4bf6db5b049d6a45f6eb99b2e (patch) | |
tree | bdb7dc211adc776cdb3adbbd5b5a9d65d8d921ef | |
parent | 7a74219cc543dc2b25a5831e8a9f22a63909cd75 (diff) | |
download | lua-language-server-387c750b96f404a4bf6db5b049d6a45f6eb99b2e.zip |
把性能测试扔到最后面
-rw-r--r-- | server/test/main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/test/main.lua b/server/test/main.lua index f6ba8466..07ea9ebb 100644 --- a/server/test/main.lua +++ b/server/test/main.lua @@ -25,7 +25,6 @@ local function main() end test 'core' - test 'full' test 'definition' test 'rename' test 'references' @@ -37,6 +36,7 @@ local function main() test 'signature' test 'document_symbol' test 'crossfile' + test 'full' print('测试完成') end |