diff options
| author | Abhishek Singh <abhisheksingh0x558@icloud.com> | 2024-11-05 19:55:42 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-05 15:25:42 +0100 |
| commit | 604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e (patch) | |
| tree | be2467c93f6297b2f2b22111af974ffed030d125 /tests/indent/nu_spec.lua | |
| parent | bot(lockfile): update dhall, printf, regex, ziggy, ziggy_schema (diff) | |
| download | nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.gz nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.bz2 nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.lz nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.xz nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.zst nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.zip | |
feat(nu): add parser and queries (#7267)
Diffstat (limited to 'tests/indent/nu_spec.lua')
| -rw-r--r-- | tests/indent/nu_spec.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/indent/nu_spec.lua b/tests/indent/nu_spec.lua new file mode 100644 index 000000000..37c02ebea --- /dev/null +++ b/tests/indent/nu_spec.lua @@ -0,0 +1,17 @@ +local Runner = require("tests.indent.common").Runner +--local XFAIL = require("tests.indent.common").XFAIL + +local run = Runner:new(it, "tests/indent/nu", { + tabstop = 2, + shiftwidth = 2, + softtabstop = -1, + expandtab = true, +}) + +describe("indent Nu:", function() + describe("whole file:", function() + run:whole_file(".", { + expected_failures = {}, + }) + end) +end) |
