diff options
author | Arnold Chand <creativenull@outlook.com> | 2023-07-23 21:08:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-24 10:08:11 +0900 |
commit | 32e1417d985f048c1e0783dec18795173c1b4599 (patch) | |
tree | ec14be26c3a1058ee0b338d0f3c6149708dfd9db /test | |
parent | 1084152a117e28ed846f19e079f502ec686b6826 (diff) | |
download | ale-32e1417d985f048c1e0783dec18795173c1b4599.zip |
fix(vue): volar v1 support (#4552)
* fix: volar v1 support
* fix: volar linter errors
Diffstat (limited to 'test')
-rw-r--r-- | test/linter/test_volar.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/linter/test_volar.vader b/test/linter/test_volar.vader index bef094be..d6dc8737 100644 --- a/test/linter/test_volar.vader +++ b/test/linter/test_volar.vader @@ -21,7 +21,7 @@ Execute(Assert proper tsserverlibrary for Volar LSP): call ale#test#SetFilename('../test-files/volar/src/App.vue') let g:init_opts = ale_linters#vue#volar#GetInitializationOptions(bufnr('')) - let g:tsserver_path = init_opts.typescript.serverPath - let g:actual_path = ale#path#Simplify(g:dir . '/../test-files/volar/node_modules/typescript/lib/tsserverlibrary.js') + let g:tsserver_path = init_opts.typescript.tsdk + let g:actual_path = ale#path#Simplify(g:dir . '/../test-files/volar/node_modules/typescript/lib/') AssertEqual g:tsserver_path, g:actual_path |