astro/packages/webapi/test/urlpattern.js

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

20 lines
508 B
JavaScript
Raw Normal View History

import { expect } from 'chai'
import { polyfill } from '../mod.js'
describe('URLPattern', () => {
const target = {}
before(() => polyfill(target))
2022-03-07 21:37:50 +00:00
it('Includes URLPattern', () => {
expect(target).to.have.property('URLPattern').that.is.a('function')
})
it('Supports URLPattern usage', () => {
const pattern = new target.URLPattern({ pathname: '/hello/:name' })
const match = pattern.exec('https://example.com/hello/Deno')
expect(match.pathname.groups).to.deep.equal({ name: 'Deno' })
})
})