From 0c74d02adcfc3d4e57892e78286f1da18502037d Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:32:39 -0700 Subject: [PATCH] test: api-basic-type/new-expression --- .../__fixtures__/api-basic-type/new-expression.input.ts | 3 +++ .../__fixtures__/api-basic-type/new-expression.output.ts | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts create mode 100644 src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts diff --git a/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts new file mode 100644 index 000000000..6a87daf42 --- /dev/null +++ b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.input.ts @@ -0,0 +1,3 @@ +import AWS from "aws-sdk"; + +const arr = new Array(); \ No newline at end of file diff --git a/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts new file mode 100644 index 000000000..6cfdc41c2 --- /dev/null +++ b/src/transforms/v2-to-v3/__fixtures__/api-basic-type/new-expression.output.ts @@ -0,0 +1,3 @@ +import { StackResourceSummary } from "@aws-sdk/client-cloudformation"; + +const arr = new Array(); \ No newline at end of file