From 8c71c6c5edfa447aaa867858e2e913340ea964b7 Mon Sep 17 00:00:00 2001 From: Pham Huy Hoang Date: Mon, 2 Jan 2023 16:28:40 +0900 Subject: fix(html): fix wrong indents for script/style tags --- tests/indent/html_spec.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/indent/html_spec.lua (limited to 'tests/indent/html_spec.lua') diff --git a/tests/indent/html_spec.lua b/tests/indent/html_spec.lua new file mode 100644 index 000000000..b94653613 --- /dev/null +++ b/tests/indent/html_spec.lua @@ -0,0 +1,28 @@ +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 "." + 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 = "
", 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) -- cgit v1.2.3-70-g09d2