Skip to content

Commit b656b53

Browse files
committed
Update tests
1 parent 9ad4873 commit b656b53

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tests/fixtures/vue-bind/binding-with-template-string.twig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
Hello World
44
</div>
55
<div class="{{ isTrue ? 'a' : 'b' }}"></div>
6+
<div style="{{ isTrue ? 'display: block;' : 'display: none !important;' }}"></div>
67
</div>

tests/fixtures/vue-bind/binding-with-template-string.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Hello World
55
</div>
66
<div :class="`${isTrue ? 'a' : 'b'}`"></div>
7+
<div :style="`${isTrue ? 'display: block;' : 'display: none !important;'}`"></div>
78
</div>
89
</template>
910

0 commit comments

Comments
 (0)