errors.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. 'use strict';Object.defineProperty(exports, "__esModule", { value: true });exports.errorMessage = undefined;var _chalk;
  2. function _load_chalk() {return _chalk = _interopRequireDefault(require('chalk'));}var _jestGetType;
  3. function _load_jestGetType() {return _jestGetType = _interopRequireDefault(require('jest-get-type'));}var _utils;
  4. function _load_utils() {return _utils = require('./utils');}function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };} /**
  5. * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
  6. *
  7. * This source code is licensed under the MIT license found in the
  8. * LICENSE file in the root directory of this source tree.
  9. *
  10. *
  11. */const errorMessage = exports.errorMessage = (option, received, defaultValue, options) => {
  12. const message = ` Option ${(_chalk || _load_chalk()).default.bold(`"${option}"`)} must be of type:
  13. ${(_chalk || _load_chalk()).default.bold.green((0, (_jestGetType || _load_jestGetType()).default)(defaultValue))}
  14. but instead received:
  15. ${(_chalk || _load_chalk()).default.bold.red((0, (_jestGetType || _load_jestGetType()).default)(received))}
  16. Example:
  17. {
  18. ${(_chalk || _load_chalk()).default.bold(`"${option}"`)}: ${(_chalk || _load_chalk()).default.bold((0, (_utils || _load_utils()).format)(defaultValue))}
  19. }`;
  20. const comment = options.comment;
  21. const name = options.title && options.title.error || (_utils || _load_utils()).ERROR;
  22. throw new (_utils || _load_utils()).ValidationError(name, message, comment);
  23. };