diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2021-01-11 13:29:37 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-11 13:29:37 -0500 |
| commit | 8783bea06e1e0dfa8dfd4834058923088471d832 (patch) | |
| tree | 050096ba649a94bb01e7c0b3a029e9b4eb060029 /lua/tests/automated/pickers/scrolling_spec.lua | |
| parent | de80a9837cd1d207981c1f6dbf504436f8bfee13 (diff) | |
feat: quickfix (#293)
* feat: quickfix (not implemented)
* [WIP]: Wed 09 Dec 2020 11:11:30 PM EST
* somewhat working linked list impl
* getting closer
* might be working
* might be working for real
* works and implemented basic example
* dont forget to close prompt
* fix descending and add more tests
* test fixes
* fix test
* more logging
* Fix some more tests
* Fix logging messing up tests
* fix: lint
* fix: multi select stuffs
Diffstat (limited to 'lua/tests/automated/pickers/scrolling_spec.lua')
| -rw-r--r-- | lua/tests/automated/pickers/scrolling_spec.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/tests/automated/pickers/scrolling_spec.lua b/lua/tests/automated/pickers/scrolling_spec.lua new file mode 100644 index 0000000..ab82378 --- /dev/null +++ b/lua/tests/automated/pickers/scrolling_spec.lua @@ -0,0 +1,9 @@ +require('plenary.reload').reload_module('telescope') + +local tester = require('telescope.pickers._test') + +describe('scrolling strategies', function() + it('should handle cycling for full list', function() + tester.run_file [[find_files__scrolling_descending_cycle]] + end) +end) |
