chore: linting

pull/7066/head
pngwn 5 years ago
parent 90f48c0de5
commit e95210da82

@ -2,7 +2,7 @@
## unreleased
* Fix non-boolean attribute rendering in SSR to render truthy values as is, making it consistent with DOM rendering.
* Fix non-boolean attribute rendering in SSR to render truthy values as is, making it consistent with DOM rendering. ([#6121](https://github.com/sveltejs/svelte/issues/6121))
## 3.44.3

@ -1,8 +1,8 @@
export default {
html: '<textarea readonly data-attr="true"></textarea>',
test({ assert, target }) {
const textarea = target.querySelector("textarea");
assert.equal(textarea.dataset.attr, "true");
const textarea = target.querySelector('textarea');
assert.equal(textarea.dataset.attr, 'true');
assert.ok(textarea.readOnly);
},
}
};

Loading…
Cancel
Save