constants.js
 1  'use strict';
 2  
 3  Object.defineProperty(exports, '__esModule', {
 4    value: true
 5  });
 6  exports.SIMILAR_MESSAGE = exports.NO_DIFF_MESSAGE = void 0;
 7  
 8  /**
 9   * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
10   *
11   * This source code is licensed under the MIT license found in the
12   * LICENSE file in the root directory of this source tree.
13   */
14  const NO_DIFF_MESSAGE = 'Compared values have no visual difference.';
15  exports.NO_DIFF_MESSAGE = NO_DIFF_MESSAGE;
16  const SIMILAR_MESSAGE =
17    'Compared values serialize to the same structure.\n' +
18    'Printing internal object structure without calling `toJSON` instead.';
19  exports.SIMILAR_MESSAGE = SIMILAR_MESSAGE;