diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-03-12 21:23:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 21:23:59 +0100 |
commit | 0770449c938cdd0edbadaf1e87e460b21fc1b4ef (patch) | |
tree | 649807f55ed9e03f1d1cd5291295e8d4ff5345da /cli/tests/unit | |
parent | e83ff62ccbe33ad9c19cb9cab9154b6767d6d74b (diff) |
refactor: move Console to op_crates/console (#9770)
Diffstat (limited to 'cli/tests/unit')
-rw-r--r-- | cli/tests/unit/dom_iterable_test.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/tests/unit/dom_iterable_test.ts b/cli/tests/unit/dom_iterable_test.ts index 259d2d440..4e94cfdba 100644 --- a/cli/tests/unit/dom_iterable_test.ts +++ b/cli/tests/unit/dom_iterable_test.ts @@ -1,7 +1,6 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -/* TODO https://github.com/denoland/deno/issues/7540 -import { unitTest, assert, assertEquals } from "./test_util.ts"; +import { assert, assertEquals, unitTest } from "./test_util.ts"; // eslint-disable-next-line @typescript-eslint/explicit-function-return-type function setup() { @@ -27,7 +26,6 @@ function setup() { }; } - unitTest(function testDomIterable(): void { const { DomIterable, Base } = setup(); @@ -88,4 +86,3 @@ unitTest(function testDomIterableScope(): void { checkScope(null, window); checkScope(undefined, window); }); -*/ |