diff options
Diffstat (limited to 'cli/tests/testdata/package_json/basic/lib.ts')
-rw-r--r-- | cli/tests/testdata/package_json/basic/lib.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/tests/testdata/package_json/basic/lib.ts b/cli/tests/testdata/package_json/basic/lib.ts deleted file mode 100644 index 1deed81f7..000000000 --- a/cli/tests/testdata/package_json/basic/lib.ts +++ /dev/null @@ -1,9 +0,0 @@ -import * as test from "@denotest/esm-basic"; - -export function add(a: number, b: number) { - return a + b; -} - -export function getValue() { - return test.getValue(); -} |