diff options
Diffstat (limited to 'cli/tests/unit/dom_iterable_test.ts')
-rw-r--r-- | cli/tests/unit/dom_iterable_test.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/unit/dom_iterable_test.ts b/cli/tests/unit/dom_iterable_test.ts index f4690d5b9..30599b6e6 100644 --- a/cli/tests/unit/dom_iterable_test.ts +++ b/cli/tests/unit/dom_iterable_test.ts @@ -1,4 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +/* TODO https://github.com/denoland/deno/issues/7540 import { unitTest, assert, assertEquals } from "./test_util.ts"; // eslint-disable-next-line @typescript-eslint/explicit-function-return-type @@ -25,6 +27,7 @@ function setup() { }; } + unitTest(function testDomIterable(): void { const { DomIterable, Base } = setup(); @@ -85,3 +88,4 @@ unitTest(function testDomIterableScope(): void { checkScope(null, window); checkScope(undefined, window); }); +*/ |