From f4e442da4d948126e1db8cbb9905c5d140d94e1d Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 26 Apr 2023 19:15:25 -0400 Subject: fix(dts): `URLPatternComponentResult` groups should have possibly undefined key values (#18643) Closes #18640 --- cli/tests/unit/urlpattern_test.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cli/tests') diff --git a/cli/tests/unit/urlpattern_test.ts b/cli/tests/unit/urlpattern_test.ts index 9bed09235..cb5fc76c5 100644 --- a/cli/tests/unit/urlpattern_test.ts +++ b/cli/tests/unit/urlpattern_test.ts @@ -1,5 +1,6 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. import { assert, assertEquals } from "./test_util.ts"; +import { assertType, IsExact } from "../../../test_util/std/testing/types.ts"; Deno.test(function urlPatternFromString() { const pattern = new URLPattern("https://deno.land/foo/:bar"); @@ -13,6 +14,10 @@ Deno.test(function urlPatternFromString() { assert(match); assertEquals(match.pathname.input, "/foo/x"); assertEquals(match.pathname.groups, { bar: "x" }); + + // group values should be nullable + const val = match.pathname.groups.val; + assertType>(true); }); Deno.test(function urlPatternFromStringWithBase() { -- cgit v1.2.3