123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.runWithExpensiveErrorDiagnosticsDisabled = runWithExpensiveErrorDiagnosticsDisabled;
- exports.configure = configure;
- exports.getConfig = getConfig;
- exports.DEFAULT_IGNORE_TAGS = void 0;
- var _prettyDom = require("./pretty-dom");
- // It would be cleaner for this to live inside './queries', but
- // other parts of the code assume that all exports from
- // './queries' are query functions.
- let config = {
- testIdAttribute: 'data-testid',
- asyncUtilTimeout: 1000,
- // this is to support React's async `act` function.
- // forcing react-testing-library to wrap all async functions would've been
- // a total nightmare (consider wrapping every findBy* query and then also
- // updating `within` so those would be wrapped too. Total nightmare).
- // so we have this config option that's really only intended for
- // react-testing-library to use. For that reason, this feature will remain
- // undocumented.
- asyncWrapper: cb => cb(),
- eventWrapper: cb => cb(),
- // default value for the `hidden` option in `ByRole` queries
- defaultHidden: false,
- // showOriginalStackTrace flag to show the full error stack traces for async errors
- showOriginalStackTrace: false,
- // throw errors w/ suggestions for better queries. Opt in so off by default.
- throwSuggestions: false,
- // called when getBy* queries fail. (message, container) => Error
- getElementError(message, container) {
- const error = new Error([message, (0, _prettyDom.prettyDOM)(container)].filter(Boolean).join('\n\n'));
- error.name = 'TestingLibraryElementError';
- return error;
- },
- _disableExpensiveErrorDiagnostics: false,
- computedStyleSupportsPseudoElements: false
- };
- const DEFAULT_IGNORE_TAGS = 'script, style';
- exports.DEFAULT_IGNORE_TAGS = DEFAULT_IGNORE_TAGS;
- function runWithExpensiveErrorDiagnosticsDisabled(callback) {
- try {
- config._disableExpensiveErrorDiagnostics = true;
- return callback();
- } finally {
- config._disableExpensiveErrorDiagnostics = false;
- }
- }
- function configure(newConfig) {
- if (typeof newConfig === 'function') {
- // Pass the existing config out to the provided function
- // and accept a delta in return
- newConfig = newConfig(config);
- } // Merge the incoming config delta
- config = { ...config,
- ...newConfig
- };
- }
- function getConfig() {
- return config;
- }
|