diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-09-28 10:53:34 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-09-28 16:28:51 +0800 |
commit | ceb7cc19eacc7b7d14d0681fd3bbd80ad27a5a10 (patch) | |
tree | 7fa4d42cb0ea9c8b57ed7df6b009aa35beff300b /test | |
parent | 8e3aed14a2d21c87e2777fd7ffd6104bc50d313f (diff) | |
download | lua-language-server-ceb7cc19eacc7b7d14d0681fd3bbd80ad27a5a10.zip |
pass tests
Diffstat (limited to 'test')
-rw-r--r-- | test/crossfile/diagnostic.lua | 1 | ||||
-rw-r--r-- | test/diagnostics/init.lua | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/test/crossfile/diagnostic.lua b/test/crossfile/diagnostic.lua index adc2961f..7735f4c5 100644 --- a/test/crossfile/diagnostic.lua +++ b/test/crossfile/diagnostic.lua @@ -6,6 +6,7 @@ local platform = require 'bee.platform' local catch = require 'catch' config.get 'Lua.diagnostics.neededFileStatus'['deprecated'] = 'Any' +config.get 'Lua.diagnostics.neededFileStatus'['type-check'] = 'Any' rawset(_G, 'TEST', true) diff --git a/test/diagnostics/init.lua b/test/diagnostics/init.lua index 1b26c00b..687027b8 100644 --- a/test/diagnostics/init.lua +++ b/test/diagnostics/init.lua @@ -5,6 +5,7 @@ local util = require 'utility' local catch = require 'catch' config.get 'Lua.diagnostics.neededFileStatus'['deprecated'] = 'Any' +config.get 'Lua.diagnostics.neededFileStatus'['type-check'] = 'Any' rawset(_G, 'TEST', true) @@ -1208,4 +1209,4 @@ local function f(x, y) end f(true, true) -- OK f(0, 0) -- OK -]]
\ No newline at end of file +]] |