diff --git a/packages/cli/src/__tests__/placeholder.test.ts b/packages/cli/src/__tests__/placeholder.test.ts deleted file mode 100644 index 9c103a3..0000000 --- a/packages/cli/src/__tests__/placeholder.test.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { describe, expect, it } from "bun:test"; - -// TODO: Remove this placeholder test when real tests are added in cli/output-tests -describe("@outfitter/cli", () => { - it("scaffold placeholder - remove when real tests exist", () => { - // This test exists to satisfy pre-push hooks - // Real tests are added in cli/output-tests, cli/input-tests, cli/pagination-tests - expect(true).toBe(true); - }); -}); diff --git a/packages/contracts/src/__tests__/placeholder.test.ts b/packages/contracts/src/__tests__/placeholder.test.ts deleted file mode 100644 index 322a5bc..0000000 --- a/packages/contracts/src/__tests__/placeholder.test.ts +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Placeholder test to satisfy bun test in scaffold PR. - * Remove when real tests exist. - */ -import { describe, expect, test } from "bun:test"; - -describe("@outfitter/contracts", () => { - test("scaffold placeholder - remove when real tests exist", () => { - expect(true).toBe(true); - }); -}); diff --git a/packages/types/src/__tests__/placeholder.test.ts b/packages/types/src/__tests__/placeholder.test.ts deleted file mode 100644 index 9c3954f..0000000 --- a/packages/types/src/__tests__/placeholder.test.ts +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Placeholder test to satisfy bun test in scaffold PR. - * Remove when real tests exist. - */ -import { describe, expect, test } from "bun:test"; - -describe("@outfitter/types", () => { - test("scaffold placeholder - remove when real tests exist", () => { - expect(true).toBe(true); - }); -});