astro/packages/webapi/test/internals.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
740 B
JavaScript
Raw Normal View History

import { assert, test } from '../run/test.setup.js'
import { polyfill } from '../mod.js'
test(() => {
return [
{
name: 'Includes polyfill.internals functionality',
test() {
const target = {}
2022-03-07 21:37:50 +00:00
polyfill(target, { exclude: 'window document' })
const pseudo = { ...target }
assert.equal(Reflect.has(pseudo, 'document'), false)
const CustomElement = class extends pseudo.HTMLElement {}
pseudo.customElements.define('custom-element', CustomElement)
polyfill.internals(pseudo, 'Document')
assert.equal(Reflect.has(pseudo, 'document'), true)
2022-03-07 21:37:50 +00:00
assert.equal(
CustomElement.prototype.isPrototypeOf(
pseudo.document.createElement('custom-element')
),
true
)
},
2022-03-07 21:37:50 +00:00
},
]
})