summaryrefslogtreecommitdiff
path: root/packages/webapi/test/urlpattern.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/webapi/test/urlpattern.js')
-rw-r--r--packages/webapi/test/urlpattern.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/webapi/test/urlpattern.js b/packages/webapi/test/urlpattern.js
deleted file mode 100644
index b9ef6b31f..000000000
--- a/packages/webapi/test/urlpattern.js
+++ /dev/null
@@ -1,19 +0,0 @@
-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' })
- })
-})