summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-01-04 17:02:56 -0500
committerGitHub <noreply@github.com>2022-01-04 17:02:56 -0500
commit19c8cd3a457b58bc62a6e0223ff78208a73d9435 (patch)
tree149bbd0cda5d0d0f1a4229f30937b950c4242d04 /cli/tests
parentb46da660563b175722937d9f29d45029bd6a0a74 (diff)
fix: upgrade swc_ecmascript to 0.103 (#13284)
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/testdata/bundle_jsx.out3
-rw-r--r--cli/tests/unit/test_util.ts1
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";