We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c36d3b commit 8b9476eCopy full SHA for 8b9476e
test/runtime/samples/attribute-casing-unknown-namespace/_config.js
@@ -7,12 +7,12 @@ export default {
7
</page>
8
`,
9
options: {
10
- 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.
11
},
12
13
test({ assert, target }) {
14
const attr = sel => target.querySelector(sel).attributes[0].name;
15
assert.equal(attr('page'), "horizontalAlignment");
16
- assert.equal(attr('button'), "textWrap")
+ assert.equal(attr('button'), "textWrap");
17
}
18
};
0 commit comments