From 940e80dab2137b0c3c0cb67e5425711b761b7096 Mon Sep 17 00:00:00 2001 From: Matt Galligan Date: Fri, 23 Jan 2026 14:29:47 -0500 Subject: [PATCH] fix(tests): remove placeholder tests --- packages/cli/src/__tests__/placeholder.test.ts | 10 ---------- packages/contracts/src/__tests__/placeholder.test.ts | 11 ----------- packages/types/src/__tests__/placeholder.test.ts | 11 ----------- 3 files changed, 32 deletions(-) delete mode 100644 packages/cli/src/__tests__/placeholder.test.ts delete mode 100644 packages/contracts/src/__tests__/placeholder.test.ts delete mode 100644 packages/types/src/__tests__/placeholder.test.ts 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); - }); -});