diff options
| author | mitermayer <mitermayer.reis@gmail.com> | 2019-08-30 04:58:46 +0000 |
|---|---|---|
| committer | mitermayer <mitermayer.reis@gmail.com> | 2019-08-30 04:58:46 +0000 |
| commit | b47fb046d880815e8d8a4974167ee2a81f1cd4cf (patch) | |
| tree | ee0ab89e13d32db434859d5ae686bd34350f1bbb | |
| parent | 93b30380ab73db3bcaf27f7c377748cc1f5b7710 (diff) | |
| download | vim-prettier-b47fb046d880815e8d8a4974167ee2a81f1cd4cf.tar.xz | |
enabling-tests-to-auto-run-on-ci - forcing linter to fail to see if it
breaks the build
| -rw-r--r-- | autoload/prettier/logging/error.vim | 2 | ||||
| -rwxr-xr-x | run-test | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/autoload/prettier/logging/error.vim b/autoload/prettier/logging/error.vim index 48ad048..3539a1e 100644 --- a/autoload/prettier/logging/error.vim +++ b/autoload/prettier/logging/error.vim @@ -7,6 +7,6 @@ let s:DEFAULT_ERROR = get(s:, 'PARSING_ERROR') function! prettier#logging#error#log(...) abort let l:error = a:0 > 0 ? a:1 : s:DEFAULT_ERROR - let l:msg = a:0 > 1 ? ': ' . a:2 : '' + let l:msg = a:0 > 1 ? ': ' . :2 : '' echohl WarningMsg | echom s:PREFIX_MSG . get(s:ERRORS, l:error, s:DEFAULT_ERROR) . l:msg | echohl NONE endfunction @@ -8,12 +8,12 @@ docker run \ "mitermayer/vim-test-bed" \ vint testplugin -echo "Running tests..." -docker run \ - --rm \ - --entrypoint=/bin/bash \ - -v $PWD:/testplugin \ - -v $PWD/tests:/home \ - "mitermayer/vim-test-bed" \ - -s - npm test +#echo "Running tests..." +#docker run \ +# --rm \ +# --entrypoint=/bin/bash \ +# -v $PWD:/testplugin \ +# -v $PWD/tests:/home \ +# "mitermayer/vim-test-bed" \ +# -s +# npm test |
