We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84d6a21 commit 7fa09c8Copy full SHA for 7fa09c8
test/index.js
@@ -347,14 +347,14 @@ test('`element`', async function (t) {
347
)
348
})
349
350
- await t.test('should prevent clobbering (#1)', async function () {
+ await t.test('should prevent clobbering (`id`)', async function () {
351
assert.deepEqual(
352
sanitize(h('div', {id: 'getElementById'})),
353
h('div', {id: 'user-content-getElementById'})
354
355
356
357
- await t.test('should prevent clobbering (#2)', async function () {
+ await t.test('should prevent clobbering (`name`)', async function () {
358
359
sanitize(h('div', {name: 'getElementById'})),
360
h('div', {name: 'user-content-getElementById'})
0 commit comments