diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-06-12 09:54:30 -0600 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | 692b051b09935653befdb8f7ba8afdb640adf17b (patch) | |
| tree | 167162b6b129ae04f68c5735078521a72917c742 /tests/indent/html_spec.lua | |
| parent | feat(c-family): inherit injections (diff) | |
| download | nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.gz nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.bz2 nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.lz nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.xz nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.tar.zst nvim-treesitter-692b051b09935653befdb8f7ba8afdb640adf17b.zip | |
feat!: drop modules, general refactor and cleanup
Diffstat (limited to 'tests/indent/html_spec.lua')
| -rw-r--r-- | tests/indent/html_spec.lua | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/tests/indent/html_spec.lua b/tests/indent/html_spec.lua index b94653613..b240b7150 100644 --- a/tests/indent/html_spec.lua +++ b/tests/indent/html_spec.lua @@ -1,28 +1,28 @@ -local Runner = require("tests.indent.common").Runner -local runner = Runner:new(it, "tests/indent/html", { +local Runner = require('tests.indent.common').Runner +local runner = Runner:new(it, 'tests/indent/html', { tabstop = 2, shiftwidth = 2, expandtab = true, }) -describe("indent HTML:", function() - describe("whole file:", function() - runner:whole_file "." +describe('indent HTML:', function() + describe('whole file:', function() + runner:whole_file('.') end) - describe("new line:", function() - runner:new_line("start_tag.html", { on_line = 1, text = "anything", indent = 0 }) - runner:new_line("start_tag.html", { on_line = 4, text = "anything", indent = 4 }) - runner:new_line("start_tag.html", { on_line = 6, text = "charset = utf-8", indent = 6 }) - runner:new_line("start_tag.html", { on_line = 6, text = ">", indent = 4 }) - runner:new_line("start_tag.html", { on_line = 6, text = "/>", indent = 4 }) - runner:new_line("issue-3986.html", { on_line = 3, text = "indent once", indent = 2 }) - runner:new_line("self_closing_tag.html", { on_line = 10, text = "Something", indent = 4 }) - runner:new_line("self_closing_tag.html", { on_line = 12, text = "disabled", indent = 6 }) - runner:new_line("self_closing_tag.html", { on_line = 12, text = "/>", indent = 4 }) - runner:new_line("script_style.html", { on_line = 5, text = "body", indent = 2 }) - runner:new_line("script_style.html", { on_line = 6, text = "<div></div>", indent = 2 }) - runner:new_line("script_style.html", { on_line = 9, text = "const x = 1", indent = 2 }) - runner:new_line("script_style.html", { on_line = 11, text = "Text", indent = 2 }) + describe('new line:', function() + runner:new_line('start_tag.html', { on_line = 1, text = 'anything', indent = 0 }) + runner:new_line('start_tag.html', { on_line = 4, text = 'anything', indent = 4 }) + runner:new_line('start_tag.html', { on_line = 6, text = 'charset = utf-8', indent = 6 }) + runner:new_line('start_tag.html', { on_line = 6, text = '>', indent = 4 }) + runner:new_line('start_tag.html', { on_line = 6, text = '/>', indent = 4 }) + runner:new_line('issue-3986.html', { on_line = 3, text = 'indent once', indent = 2 }) + runner:new_line('self_closing_tag.html', { on_line = 10, text = 'Something', indent = 4 }) + runner:new_line('self_closing_tag.html', { on_line = 12, text = 'disabled', indent = 6 }) + runner:new_line('self_closing_tag.html', { on_line = 12, text = '/>', indent = 4 }) + runner:new_line('script_style.html', { on_line = 5, text = 'body', indent = 2 }) + runner:new_line('script_style.html', { on_line = 6, text = '<div></div>', indent = 2 }) + runner:new_line('script_style.html', { on_line = 9, text = 'const x = 1', indent = 2 }) + runner:new_line('script_style.html', { on_line = 11, text = 'Text', indent = 2 }) end) end) |
