Skip to content

Commit

Permalink
keep lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
halfnelson committed Sep 11, 2020
1 parent 9c36d3b commit 8b9476e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ export default {
</page>
`,
options: {
hydrate: false, // Hydrations currently doesn't work, the case sensitivity is only handled for svg elements.
hydrate: false // Hydrations currently doesn't work, the case sensitivity is only handled for svg elements.
},

test({ assert, target }) {
const attr = sel => target.querySelector(sel).attributes[0].name;
assert.equal(attr('page'), "horizontalAlignment");
assert.equal(attr('button'), "textWrap")
assert.equal(attr('button'), "textWrap");
}
};

0 comments on commit 8b9476e

Please sign in to comment.