2022-03-07 21:36:22 +00:00
|
|
|
import { assert, test } from '../run/test.setup.js'
|
|
|
|
import { polyfill } from '../mod.js'
|
|
|
|
|
|
|
|
test(() => {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
name: 'Includes URLPattern',
|
|
|
|
test() {
|
|
|
|
const target = {}
|
|
|
|
|
|
|
|
polyfill(target)
|
2022-03-07 21:37:50 +00:00
|
|
|
|
2022-03-07 21:36:22 +00:00
|
|
|
assert.equal(Reflect.has(target, 'URLPattern'), true)
|
|
|
|
assert.equal(typeof target.URLPattern, 'function')
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Supports URLPattern usage',
|
|
|
|
test() {
|
|
|
|
const target = {}
|
|
|
|
|
|
|
|
polyfill(target)
|
|
|
|
|
|
|
|
const pattern = new target.URLPattern({ pathname: '/hello/:name' })
|
|
|
|
const match = pattern.exec('https://example.com/hello/Deno')
|
|
|
|
|
|
|
|
assert.deepEqual(match.pathname.groups, { name: 'Deno' })
|
|
|
|
},
|
|
|
|
},
|
|
|
|
]
|
|
|
|
})
|