diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/bundle_jsx.out | 3 | ||||
-rw-r--r-- | cli/tests/unit/test_util.ts | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/cli/tests/testdata/bundle_jsx.out b/cli/tests/testdata/bundle_jsx.out index 44c9e4555..da83cde82 100644 --- a/cli/tests/testdata/bundle_jsx.out +++ b/cli/tests/testdata/bundle_jsx.out @@ -1,7 +1,6 @@ [WILDCARD] const React = { - createElement () { - } + createElement () {} }; function app() { return React.createElement("div", null, React.createElement("h2", null, "asdf")); diff --git a/cli/tests/unit/test_util.ts b/cli/tests/unit/test_util.ts index 80af8fdfc..85c59717c 100644 --- a/cli/tests/unit/test_util.ts +++ b/cli/tests/unit/test_util.ts @@ -1,6 +1,5 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -import { assert } from "../../../test_util/std/testing/asserts.ts"; import * as colors from "../../../test_util/std/fmt/colors.ts"; export { colors }; import { resolve } from "../../../test_util/std/path/mod.ts"; |