1export let TESTING = Bun.env.NODE_ENV === "test"; 2// TESTING = true; 3 4export const logIfTesting: typeof console.log = (...args) => { 5 if (!TESTING) return; 6 return console.log(...args); 7}; 8