; Add test for embedded HEEx to elixir-ts-mode-tests

* test/lisp/progmodes/elixir-ts-mode-resources/indent.erts:
Add test.  (Bug#62327)
This commit is contained in:
Wilhelm H Kirschbaum 2023-03-21 12:13:58 +02:00 committed by Eli Zaretskii
parent 6731c8827b
commit 90c0472ed6

View file

@ -306,3 +306,27 @@ Name: Long tuple
{"January", "February", "March", "April", "May", "June", "July", "August", "September",
"October", "November", "December"}
=-=-=
Name: Embedded HEEx
=-=
defmodule Foo do
def foo(assigns) do
~H"""
<span>
text
</span>
"""
end
end
=-=
defmodule Foo do
def foo(assigns) do
~H"""
<span>
text
</span>
"""
end
end
=-=-=