mirror of
https://github.com/marko-js/marko.git
synced 2026-02-01 16:07:13 +00:00
More test cases
This commit is contained in:
parent
293f891c52
commit
cde58ad930
1
test/fixtures/templates/empty-attr-dynamic/expected.html
vendored
Normal file
1
test/fixtures/templates/empty-attr-dynamic/expected.html
vendored
Normal file
@ -0,0 +1 @@
|
||||
<img alt>
|
||||
1
test/fixtures/templates/empty-attr-dynamic/template.marko
vendored
Normal file
1
test/fixtures/templates/empty-attr-dynamic/template.marko
vendored
Normal file
@ -0,0 +1 @@
|
||||
<img alt="${data.myAlt || true}">
|
||||
3
test/fixtures/templates/empty-attr-dynamic/test.js
vendored
Normal file
3
test/fixtures/templates/empty-attr-dynamic/test.js
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
exports.templateData = {
|
||||
myAlt: null
|
||||
};
|
||||
1
test/fixtures/templates/empty-attr/expected.html
vendored
Normal file
1
test/fixtures/templates/empty-attr/expected.html
vendored
Normal file
@ -0,0 +1 @@
|
||||
<img alt>
|
||||
1
test/fixtures/templates/empty-attr/template.marko
vendored
Normal file
1
test/fixtures/templates/empty-attr/template.marko
vendored
Normal file
@ -0,0 +1 @@
|
||||
<img alt="">
|
||||
1
test/fixtures/templates/empty-attr/test.js
vendored
Normal file
1
test/fixtures/templates/empty-attr/test.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
exports.templateData = {};
|
||||
Loading…
x
Reference in New Issue
Block a user