diff options
Diffstat (limited to 'cli/tests/testdata/package_json/basic/main.ts')
-rw-r--r-- | cli/tests/testdata/package_json/basic/main.ts | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/cli/tests/testdata/package_json/basic/main.ts b/cli/tests/testdata/package_json/basic/main.ts index 5911fe32d..e241f3002 100644 --- a/cli/tests/testdata/package_json/basic/main.ts +++ b/cli/tests/testdata/package_json/basic/main.ts @@ -1,11 +1,3 @@ -import * as test from "@denotest/esm-basic"; +import { getValue } from "./lib.ts"; -console.log(test.getValue()); - -export function add(a: number, b: number) { - return a + b; -} - -export function getValue() { - return test.getValue(); -} +console.log(getValue()); |