add more tests

This commit is contained in:
davidodenwald 2022-12-01 19:39:11 +01:00
parent 753a265846
commit 0be504abb4
5 changed files with 6 additions and 2 deletions

View file

@ -7,8 +7,6 @@ import {
Statement,
Block,
nonClosingStatements,
Expression,
IgnoreBlock,
} from "./jinja";
const regex =

View file

View file

View file

@ -0,0 +1 @@
Error('Closung statement "endif" doesn't match Opening Statement "for item in seq".')

View file

@ -0,0 +1,5 @@
<ul>
{% for item in seq %}
<li> {{ item }} </li>
{% endif %}
</ul>