mirror of
https://github.com/facebook/react.git
synced 2026-02-21 19:31:52 +00:00
Based off: https://github.com/facebook/react/pull/31988 <img width="741" alt="Screenshot 2025-01-06 at 12 52 08 AM" src="https://github.com/user-attachments/assets/29b159ca-66d4-441f-8817-dd2db66d1edb" /> it is done
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
/*!
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const {
|
|
patchConsoleMethods,
|
|
resetAllUnexpectedConsoleCalls,
|
|
assertConsoleLogsCleared,
|
|
} = require('internal-test-utils/consoleMock');
|
|
const spyOn = jest.spyOn;
|
|
|
|
// Spying on console methods in production builds can mask errors.
|
|
// This is why we added an explicit spyOnDev() helper.
|
|
// It's too easy to accidentally use the more familiar spyOn() helper though,
|
|
// So we disable it entirely.
|
|
// Spying on both dev and prod will require using both spyOnDev() and spyOnProd().
|
|
global.spyOn = function () {
|
|
throw new Error(
|
|
'Do not use spyOn(). ' +
|
|
'It can accidentally hide unexpected errors in production builds. ' +
|
|
'Use spyOnDev(), spyOnProd(), or spyOnDevAndProd() instead.'
|
|
);
|
|
};
|
|
|
|
global.spyOnDev = function (...args) {
|
|
if (__DEV__) {
|
|
return spyOn(...args);
|
|
}
|
|
};
|
|
|
|
global.spyOnDevAndProd = spyOn;
|
|
|
|
global.spyOnProd = function (...args) {
|
|
if (!__DEV__) {
|
|
return spyOn(...args);
|
|
}
|
|
};
|
|
|
|
// Patch the console to assert that all console error/warn/log calls assert.
|
|
patchConsoleMethods({includeLog: !!process.env.CI});
|
|
beforeEach(resetAllUnexpectedConsoleCalls);
|
|
afterEach(assertConsoleLogsCleared);
|
|
|
|
// TODO: enable this check so we don't forget to reset spyOnX mocks.
|
|
// afterEach(() => {
|
|
// if (
|
|
// console[methodName] !== mockMethod &&
|
|
// !jest.isMockFunction(console[methodName])
|
|
// ) {
|
|
// throw new Error(
|
|
// `Test did not tear down console.${methodName} mock properly.`
|
|
// );
|
|
// }
|
|
// });
|
|
|
|
expect.extend({
|
|
...require('../matchers/reactTestMatchers'),
|
|
...require('../matchers/toThrow'),
|
|
});
|