123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- exports.errorMessage = undefined;
- var _chalk;
- function _load_chalk() {
- return (_chalk = _interopRequireDefault(require('chalk')));
- }
- var _jestGetType;
- function _load_jestGetType() {
- return (_jestGetType = _interopRequireDefault(require('jest-get-type')));
- }
- var _utils;
- function _load_utils() {
- return (_utils = require('./utils'));
- }
- function _interopRequireDefault(obj) {
- return obj && obj.__esModule ? obj : {default: obj};
- }
- /**
- * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- *
- */
- const errorMessage = (exports.errorMessage = (
- option,
- received,
- defaultValue,
- options,
- path
- ) => {
- const message = ` Option ${(_chalk || _load_chalk()).default.bold(
- `"${path && path.length > 0 ? path.join('.') + '.' : ''}${option}"`
- )} must be of type:
- ${(_chalk || _load_chalk()).default.bold.green(
- (0, (_jestGetType || _load_jestGetType()).default)(defaultValue)
- )}
- but instead received:
- ${(_chalk || _load_chalk()).default.bold.red(
- (0, (_jestGetType || _load_jestGetType()).default)(received)
- )}
- Example:
- {
- ${(_chalk || _load_chalk()).default.bold(`"${option}"`)}: ${(
- _chalk || _load_chalk()
- ).default.bold(
- (0, (_utils || _load_utils()).formatPrettyObject)(defaultValue)
- )}
- }`;
- const comment = options.comment;
- const name =
- (options.title && options.title.error) || (_utils || _load_utils()).ERROR;
- throw new (_utils || _load_utils()).ValidationError(name, message, comment);
- });
|