diff options
| author | mitermayer <mitermayer@gmail.com> | 2020-03-21 22:30:42 +1100 |
|---|---|---|
| committer | mitermayer <mitermayer@gmail.com> | 2020-03-21 23:38:46 +1100 |
| commit | f10100e0b48effa9a20052ea9fc634b521c0072d (patch) | |
| tree | 13092d917024c2644d6c1c0b5fd99ef2ac446838 /tests | |
| parent | 7041b9cb8bee84f432f1e168f826a90a0beea93a (diff) | |
| download | vim-prettier-f10100e0b48effa9a20052ea9fc634b521c0072d.tar.xz | |
bugfix/issue-229-fixing-neovim-0-4-compatibility
- Updated nvim test version to latest 0.4.3 on Dockerfile
- Updated nvim async job to behave similar to vim8
- Removing support for python plugins since it has been archieved from
repository
- bumping prettier dep
- updating snapshots
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/__snapshots__/formatting.test.js.snap | 18 | ||||
| -rw-r--r-- | tests/fixtures/foo.py | 12 |
2 files changed, 0 insertions, 30 deletions
diff --git a/tests/__snapshots__/formatting.test.js.snap b/tests/__snapshots__/formatting.test.js.snap index fafb3e7..e188a56 100644 --- a/tests/__snapshots__/formatting.test.js.snap +++ b/tests/__snapshots__/formatting.test.js.snap @@ -174,24 +174,6 @@ $a = 'a'; $b = $a . $a . ' asda';" `; -exports[`Prettier formats foo.py file with :Prettier command 1`] = ` -"def foo(a, *, example=False, **kwargs): - print(\\"hello world\\", example) - - -def i18n_patterns(*urls, prefix_default_language=True): - pass" -`; - -exports[`Prettier formats foo.py file with :PrettierAsync command 1`] = ` -"def foo(a, *, example=False, **kwargs): - print(\\"hello world\\", example) - - -def i18n_patterns(*urls, prefix_default_language=True): - pass" -`; - exports[`Prettier formats foo.rb file with :Prettier command 1`] = ` "[1, 2, 3].each do |i| p i diff --git a/tests/fixtures/foo.py b/tests/fixtures/foo.py deleted file mode 100644 index b284e14..0000000 --- a/tests/fixtures/foo.py +++ /dev/null @@ -1,12 +0,0 @@ -def foo(a, - *, - example=False, **kwargs): - print( - "hello world", - example - ) -def i18n_patterns( - *urls, - prefix_default_language=True - ): - pass |
