From da52058a945999d486b07700d2834f027a65947c Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 29 Apr 2024 10:08:27 -0400 Subject: chore: migrate bench, publish, and more itests to spec tests (#23584) --- tests/specs/cache/package_json/lib.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/specs/cache/package_json/lib.ts (limited to 'tests/specs/cache/package_json/lib.ts') diff --git a/tests/specs/cache/package_json/lib.ts b/tests/specs/cache/package_json/lib.ts new file mode 100644 index 000000000..1deed81f7 --- /dev/null +++ b/tests/specs/cache/package_json/lib.ts @@ -0,0 +1,9 @@ +import * as test from "@denotest/esm-basic"; + +export function add(a: number, b: number) { + return a + b; +} + +export function getValue() { + return test.getValue(); +} -- cgit v1.2.3