diff options
author | w0rp <devw0rp@gmail.com> | 2017-12-10 10:12:26 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-12-10 10:12:26 +0000 |
commit | 7a88a3605c9bc270bcbc00fbf11aaf2a825d7bae (patch) | |
tree | 94be160981b4c18d7ee290eedc06e90e3771b69f /test/handler/test_tslint_handler.vader | |
parent | 9152effa9fe4dc9e71d1ff846ba9fdf77eeeebf9 (diff) | |
download | ale-7a88a3605c9bc270bcbc00fbf11aaf2a825d7bae.zip |
Disable a test on Windows for now, because Windows is stupid
Diffstat (limited to 'test/handler/test_tslint_handler.vader')
-rw-r--r-- | test/handler/test_tslint_handler.vader | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/test/handler/test_tslint_handler.vader b/test/handler/test_tslint_handler.vader index 287baa01..4c551dc3 100644 --- a/test/handler/test_tslint_handler.vader +++ b/test/handler/test_tslint_handler.vader @@ -282,27 +282,29 @@ Execute(The tslint handler should not report no-implicit-dependencies errors): \ }])]) Execute(The tslint handler should set filename keys for temporary files): - " The temporay filename below is hacked into being a relative path so we can - " test that we resolve the temporary filename first. - AssertEqual - \ [ - \ {'lnum': 47, 'col': 1, 'code': 'curly', 'end_lnum': 47, 'type': 'E', 'end_col': 26, 'text': 'if statements must be braced'}, - \ ], - \ ale_linters#typescript#tslint#Handle(bufnr(''), [json_encode([ - \ { - \ 'endPosition': { - \ 'character':25, - \ 'line':46, - \ 'position':1383, - \ }, - \ 'failure': 'if statements must be braced', - \ 'name': substitute(substitute(substitute(expand('%:p'), '[^/\\]', '', 'g'), '.', '../', 'g') . tempname(), '\([A-Z]:\\\)[A-Z]:', '\1', ''), - \ 'ruleName': 'curly', - \ 'ruleSeverity':'ERROR', - \ 'startPosition': { - \ 'character':0, - \ 'line':46, - \ 'position':1358, - \ } - \ }, - \ ])]) + if !has('win32') + " The temporay filename below is hacked into being a relative path so we can + " test that we resolve the temporary filename first. + AssertEqual + \ [ + \ {'lnum': 47, 'col': 1, 'code': 'curly', 'end_lnum': 47, 'type': 'E', 'end_col': 26, 'text': 'if statements must be braced'}, + \ ], + \ ale_linters#typescript#tslint#Handle(bufnr(''), [json_encode([ + \ { + \ 'endPosition': { + \ 'character':25, + \ 'line':46, + \ 'position':1383, + \ }, + \ 'failure': 'if statements must be braced', + \ 'name': substitute(substitute(substitute(expand('%:p'), '[^/\\]', '', 'g'), '.', '../', 'g') . tempname(), '\([A-Z]:\\\)[A-Z]:', '\1', ''), + \ 'ruleName': 'curly', + \ 'ruleSeverity':'ERROR', + \ 'startPosition': { + \ 'character':0, + \ 'line':46, + \ 'position':1358, + \ } + \ }, + \ ])]) + endif |