From 457d980815c91631597f9b04a134f8a72e99386c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Fri, 11 Sep 2020 10:32:40 +0900 Subject: [PATCH] Add a test for denoland/deno#7413 --- ecmascript/transforms/tests/typescript_strip.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ecmascript/transforms/tests/typescript_strip.rs b/ecmascript/transforms/tests/typescript_strip.rs index 28ff796bb40a..f6c766ad1ce3 100644 --- a/ecmascript/transforms/tests/typescript_strip.rs +++ b/ecmascript/transforms/tests/typescript_strip.rs @@ -3043,3 +3043,12 @@ export default (identifier: string, level = 0, b = "", m = false) => { ); to!(bin_01, "a!!!! + b!!!!!! + c!!!!!", "a + b + c"); + +to!( + deno_7413, + " + import { a } from './foo'; + import { Type } from './types'; + ", + "" +);