blob: 694d36d64aadbe6d11c90c6f34fc9150770704b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Before:
Save g:typescript_tslint_executable
Save g:typescript_tslint_config_path
Save g:typescript_tslint_use_global
unlet! g:typescript_tslint_executable
unlet! g:typescript_tslint_config_path
unlet! g:typescript_tslint_use_global
runtime ale_linters/typescript/tslint.vim
call ale#test#SetDirectory('/testplugin/test/command_callback')
After:
Restore
call ale#test#RestoreDirectory()
call ale#linter#Reset()
Execute(The default tslint command should be correct):
AssertEqual
\ 'cd ''' . expand('%:p:h') . ''' && '
\ . 'tslint --format json %t',
\ ale_linters#typescript#tslint#GetCommand(bufnr(''))
|