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/testdata/publish/workspace/foo/deno.json | 10 ---------- tests/testdata/publish/workspace/foo/mod.ts | 5 ----- 2 files changed, 15 deletions(-) delete mode 100644 tests/testdata/publish/workspace/foo/deno.json delete mode 100644 tests/testdata/publish/workspace/foo/mod.ts (limited to 'tests/testdata/publish/workspace/foo') diff --git a/tests/testdata/publish/workspace/foo/deno.json b/tests/testdata/publish/workspace/foo/deno.json deleted file mode 100644 index 79563d36c..000000000 --- a/tests/testdata/publish/workspace/foo/deno.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "@foo/foo", - "version": "1.0.0", - "exports": { - ".": "./mod.ts" - }, - "imports": { - "bar": "jsr:@foo/bar@1" - } -} diff --git a/tests/testdata/publish/workspace/foo/mod.ts b/tests/testdata/publish/workspace/foo/mod.ts deleted file mode 100644 index adf584463..000000000 --- a/tests/testdata/publish/workspace/foo/mod.ts +++ /dev/null @@ -1,5 +0,0 @@ -import * as bar from "bar"; - -export function add(a: number, b: number): number { - return bar.add(a, b); -} -- cgit v1.2.3