summaryrefslogtreecommitdiff
path: root/packages/webapi/test/urlpattern.js
blob: b9ef6b31f50e55d864764c55e370cd91021a98e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { expect } from 'chai'
import { polyfill } from '../mod.js'

describe('URLPattern', () => {
	const target = {}

	before(() => polyfill(target))

	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' })
	})
})