From fd7b13610fc4d3109ba2656e57856fd96c946f03 Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Tue, 25 Feb 2025 13:22:48 -0500 Subject: [PATCH] chore(bun): Remove all references to jest Jest is not being used, we can remove all jest related code from this package --- packages/bun/jest.config.js | 1 - packages/bun/tsconfig.test.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 packages/bun/jest.config.js diff --git a/packages/bun/jest.config.js b/packages/bun/jest.config.js deleted file mode 100644 index 24f49ab59a4c..000000000000 --- a/packages/bun/jest.config.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../jest/jest.config.js'); diff --git a/packages/bun/tsconfig.test.json b/packages/bun/tsconfig.test.json index e5d8bb0fb535..4cbbffaccbbc 100644 --- a/packages/bun/tsconfig.test.json +++ b/packages/bun/tsconfig.test.json @@ -5,7 +5,7 @@ "compilerOptions": { // should include all types from `./tsconfig.json` plus types for all test frameworks used - "types": ["bun-types", "jest"] + "types": ["bun-types"] // other package-specific, test-specific options }