relay-test-utils-internal 15.0.0 → 16.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +1 -1
- package/index.js.flow +4 -3
- package/lib/Matchers.js +0 -15
- package/lib/consoleError.js +0 -34
- package/lib/consoleErrorsAndWarnings.js +1 -14
- package/lib/consoleWarning.js +0 -34
- package/lib/describeWithFeatureFlags.js +1 -21
- package/lib/generateTestsFromFixtures.js +0 -24
- package/lib/getOutputForFixture.js +0 -11
- package/lib/index.js +4 -24
- package/lib/printAST.js +1 -24
- package/lib/simpleClone.js +0 -18
- package/lib/trackRetentionForEnvironment.js +0 -21
- package/lib/warnings.js +0 -34
- package/package.json +2 -2
- package/relay-test-utils-internal.js +2 -2
- package/relay-test-utils-internal.min.js +2 -2
package/index.js
CHANGED
package/index.js.flow
CHANGED
@@ -48,11 +48,12 @@ const {createMockEnvironment, unwrapContainer} = require('relay-test-utils');
|
|
48
48
|
function cannotReadPropertyOfUndefined__DEPRECATED(
|
49
49
|
propertyName: string,
|
50
50
|
): string {
|
51
|
-
|
52
|
-
|
53
|
-
|
51
|
+
const matches = process.version.match(/^v(\d+)\./);
|
52
|
+
const majorVersion = matches == null ? null : parseInt(matches[1], 10);
|
53
|
+
if (majorVersion == null || majorVersion < 16) {
|
54
54
|
return `Cannot read property '${propertyName}' of undefined`;
|
55
55
|
}
|
56
|
+
return `Cannot read properties of undefined (reading '${propertyName}')`;
|
56
57
|
}
|
57
58
|
|
58
59
|
/**
|
package/lib/Matchers.js
CHANGED
@@ -1,16 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
* @format
|
8
|
-
* @oncall relay
|
9
|
-
*/
|
10
|
-
|
11
1
|
'use strict';
|
12
2
|
|
13
|
-
/* global expect */
|
14
3
|
function toBeDeeplyFrozen(actual) {
|
15
4
|
function check(value) {
|
16
5
|
expect(Object.isFrozen(value)).toBe(true);
|
@@ -56,8 +45,6 @@ function toWarn(actual, expected) {
|
|
56
45
|
var callsCount = warning.mock.calls.length;
|
57
46
|
actual();
|
58
47
|
var calls = warning.mock.calls.slice(callsCount);
|
59
|
-
|
60
|
-
// Simple case: no explicit expectation.
|
61
48
|
if (!expected) {
|
62
49
|
var warned = calls.filter(function (args) {
|
63
50
|
return !args[0];
|
@@ -69,8 +56,6 @@ function toWarn(actual, expected) {
|
|
69
56
|
}
|
70
57
|
};
|
71
58
|
}
|
72
|
-
|
73
|
-
// Custom case: explicit expectation.
|
74
59
|
if (!Array.isArray(expected)) {
|
75
60
|
expected = [expected];
|
76
61
|
}
|
package/lib/consoleError.js
CHANGED
@@ -1,53 +1,19 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/* global jest */
|
15
3
|
var _require = require('./consoleErrorsAndWarnings'),
|
16
4
|
createConsoleInterceptionSystem = _require.createConsoleInterceptionSystem;
|
17
5
|
var consoleErrorsSystem = createConsoleInterceptionSystem('error', 'expectConsoleError', function (impl) {
|
18
6
|
jest.spyOn(console, 'error').mockImplementation(impl);
|
19
7
|
});
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Mocks console.error so that errors printed to the console are instead thrown.
|
23
|
-
* Any expected errors need to be explicitly expected with `expectConsoleErrorWillFire(message)`.
|
24
|
-
*
|
25
|
-
* NOTE: This should be called on top of a test file. The test should NOT
|
26
|
-
* use `jest.resetModules()` or manually mock `console`.
|
27
|
-
*/
|
28
8
|
function disallowConsoleErrors() {
|
29
9
|
consoleErrorsSystem.disallowMessages();
|
30
10
|
}
|
31
|
-
|
32
|
-
/**
|
33
|
-
* Expect an error with the given message. If the message isn't fired in the
|
34
|
-
* current test, the test will fail.
|
35
|
-
*/
|
36
11
|
function expectConsoleErrorWillFire(message, options) {
|
37
12
|
consoleErrorsSystem.expectMessageWillFire(message, options);
|
38
13
|
}
|
39
|
-
|
40
|
-
/**
|
41
|
-
* Expect the callback `fn` to print an error with the message, and otherwise fail.
|
42
|
-
*/
|
43
14
|
function expectConsoleError(message, fn) {
|
44
15
|
return consoleErrorsSystem.expectMessage(message, fn);
|
45
16
|
}
|
46
|
-
|
47
|
-
/**
|
48
|
-
* Expect the callback `fn` to trigger all console errors (in sequence),
|
49
|
-
* and otherwise fail.
|
50
|
-
*/
|
51
17
|
function expectConsoleErrorsMany(messages, fn) {
|
52
18
|
return consoleErrorsSystem.expectMessageMany(messages, fn);
|
53
19
|
}
|
@@ -1,17 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/* global afterEach */
|
15
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault")["default"];
|
16
4
|
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
17
5
|
var originalConsoleError = console.error;
|
@@ -37,7 +25,6 @@ function createConsoleInterceptionSystem(typename, expectFunctionName, setUpMock
|
|
37
25
|
} else if (optionalIndex >= 0) {
|
38
26
|
optionalMessages.splice(optionalIndex, 1);
|
39
27
|
} else {
|
40
|
-
// log to console in case the error gets swallowed somewhere
|
41
28
|
originalConsoleError("Unexpected ".concat(typenameCap, ": ") + message);
|
42
29
|
throw new Error("".concat(typenameCap, ": ") + message);
|
43
30
|
}
|
@@ -64,7 +51,7 @@ function createConsoleInterceptionSystem(typename, expectFunctionName, setUpMock
|
|
64
51
|
if (!installed) {
|
65
52
|
throw new Error("".concat(installerName, " needs to be called before expect").concat(typenameCapPlural, "WillFire"));
|
66
53
|
}
|
67
|
-
var optional = (options === null || options === void 0 ? void 0 : options.optional) === true;
|
54
|
+
var optional = (options === null || options === void 0 ? void 0 : options.optional) === true;
|
68
55
|
for (var i = 0; i < ((_options$count = options === null || options === void 0 ? void 0 : options.count) !== null && _options$count !== void 0 ? _options$count : 1); i++) {
|
69
56
|
var _options$count;
|
70
57
|
(optional ? optionalMessages : expectedMessages).push(message);
|
package/lib/consoleWarning.js
CHANGED
@@ -1,53 +1,19 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/* global jest */
|
15
3
|
var _require = require('./consoleErrorsAndWarnings'),
|
16
4
|
createConsoleInterceptionSystem = _require.createConsoleInterceptionSystem;
|
17
5
|
var consoleWarningsSystem = createConsoleInterceptionSystem('warning', 'expectConsoleWarning', function (impl) {
|
18
6
|
jest.spyOn(console, 'warn').mockImplementation(impl);
|
19
7
|
});
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Mocks console.warn so that warnings printed to the console are instead thrown.
|
23
|
-
* Any expected warnings need to be explicitly expected with `expectConsoleWarningWillFire(message)`.
|
24
|
-
*
|
25
|
-
* NOTE: This should be called on top of a test file. The test should NOT
|
26
|
-
* use `jest.resetModules()` or manually mock `console`.
|
27
|
-
*/
|
28
8
|
function disallowConsoleWarnings() {
|
29
9
|
consoleWarningsSystem.disallowMessages();
|
30
10
|
}
|
31
|
-
|
32
|
-
/**
|
33
|
-
* Expect a warning with the given message. If the message isn't fired in the
|
34
|
-
* current test, the test will fail.
|
35
|
-
*/
|
36
11
|
function expectConsoleWarningWillFire(message, options) {
|
37
12
|
consoleWarningsSystem.expectMessageWillFire(message, options);
|
38
13
|
}
|
39
|
-
|
40
|
-
/**
|
41
|
-
* Expect the callback `fn` to print a warning with the message, and otherwise fail.
|
42
|
-
*/
|
43
14
|
function expectConsoleWarning(message, fn) {
|
44
15
|
return consoleWarningsSystem.expectMessage(message, fn);
|
45
16
|
}
|
46
|
-
|
47
|
-
/**
|
48
|
-
* Expect the callback `fn` to trigger all console warnings (in sequence),
|
49
|
-
* and otherwise fail.
|
50
|
-
*/
|
51
17
|
function expectConsoleWarningsMany(messages, fn) {
|
52
18
|
return consoleWarningsSystem.expectMessageMany(messages, fn);
|
53
19
|
}
|
@@ -1,27 +1,7 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
|
-
/**
|
13
|
-
* Run a test suite under multiple sets of feature flags.
|
14
|
-
* Beware that calling jest.resetModules() within the suite may break this.
|
15
|
-
*/
|
16
|
-
|
17
1
|
'use strict';
|
18
2
|
|
19
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault")["default"];
|
20
4
|
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
21
|
-
// This function is for running within a test environment, so we use globals
|
22
|
-
// available within tests -- taken from:
|
23
|
-
// i code/www/[5ee5e1d71a05e9f58ded3c1c22b810666383164f]/flow/shared/libdefs/jest.js
|
24
|
-
|
25
5
|
function describeWithFeatureFlags(flagSets, description, body) {
|
26
6
|
describe.each(flagSets)("".concat(description, " - Feature flags: %o"), function (flags) {
|
27
7
|
var originalFlags;
|
@@ -33,7 +13,7 @@ function describeWithFeatureFlags(flagSets, description, body) {
|
|
33
13
|
});
|
34
14
|
afterEach(function () {
|
35
15
|
var _require2 = require('relay-runtime'),
|
36
|
-
RelayFeatureFlags = _require2.RelayFeatureFlags;
|
16
|
+
RelayFeatureFlags = _require2.RelayFeatureFlags;
|
37
17
|
Object.assign(RelayFeatureFlags, originalFlags);
|
38
18
|
});
|
39
19
|
body();
|
@@ -1,13 +1,3 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
* @format
|
8
|
-
* @oncall relay
|
9
|
-
*/
|
10
|
-
|
11
1
|
'use strict';
|
12
2
|
|
13
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault")["default"];
|
@@ -15,13 +5,6 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
15
5
|
var getOutputForFixture = require('./getOutputForFixture');
|
16
6
|
var fs = require('fs');
|
17
7
|
var path = require('path');
|
18
|
-
|
19
|
-
/* global expect,test */
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Extend Jest with a custom snapshot serializer to provide additional context
|
23
|
-
* and reduce the amount of escaping that occurs.
|
24
|
-
*/
|
25
8
|
var FIXTURE_TAG = Symbol["for"]('FIXTURE_TAG');
|
26
9
|
expect.addSnapshotSerializer({
|
27
10
|
print: function print(value) {
|
@@ -33,13 +16,6 @@ expect.addSnapshotSerializer({
|
|
33
16
|
return value && value[FIXTURE_TAG] === true;
|
34
17
|
}
|
35
18
|
});
|
36
|
-
|
37
|
-
/**
|
38
|
-
* Generates a set of jest snapshot tests that compare the output of the
|
39
|
-
* provided `operation` to each of the matching files in the `fixturesPath`.
|
40
|
-
* The fixture should have '# expected-to-throw' on its first line
|
41
|
-
* if it is expected to fail
|
42
|
-
*/
|
43
19
|
function generateTestsFromFixtures(fixturesPath, operation) {
|
44
20
|
var fixtures = fs.readdirSync(fixturesPath);
|
45
21
|
test("has fixtures in ".concat(fixturesPath), function () {
|
@@ -1,14 +1,3 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
3
|
function getOutputForFixture(input, operation, file) {
|
package/lib/index.js
CHANGED
@@ -1,14 +1,3 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
3
|
var _require = require('./consoleError'),
|
@@ -37,23 +26,14 @@ var _require4 = require('./warnings'),
|
|
37
26
|
var _require5 = require('relay-test-utils'),
|
38
27
|
createMockEnvironment = _require5.createMockEnvironment,
|
39
28
|
unwrapContainer = _require5.unwrapContainer;
|
40
|
-
|
41
|
-
// Apparently, in node v16 (because now they are using V8 V9.something)
|
42
|
-
// the content of the TypeError has changed, and now some of our tests
|
43
|
-
// stated to fail.
|
44
|
-
// This is a temporary work-around to make test pass, but we need to
|
45
|
-
// figure out a cleaner way of testing this.
|
46
29
|
function cannotReadPropertyOfUndefined__DEPRECATED(propertyName) {
|
47
|
-
|
48
|
-
|
49
|
-
|
30
|
+
var matches = process.version.match(/^v(\d+)\./);
|
31
|
+
var majorVersion = matches == null ? null : parseInt(matches[1], 10);
|
32
|
+
if (majorVersion == null || majorVersion < 16) {
|
50
33
|
return "Cannot read property '".concat(propertyName, "' of undefined");
|
51
34
|
}
|
35
|
+
return "Cannot read properties of undefined (reading '".concat(propertyName, "')");
|
52
36
|
}
|
53
|
-
|
54
|
-
/**
|
55
|
-
* The public interface to Relay Test Utils.
|
56
|
-
*/
|
57
37
|
module.exports = {
|
58
38
|
cannotReadPropertyOfUndefined__DEPRECATED: cannotReadPropertyOfUndefined__DEPRECATED,
|
59
39
|
createMockEnvironment: createMockEnvironment,
|
package/lib/printAST.js
CHANGED
@@ -1,26 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/**
|
15
|
-
* Prints a JSON AST similar to JSON.stringify(ast, null, 2) with some changes:
|
16
|
-
* - Adds trailing commas to simplify diffs.
|
17
|
-
* - Prints `undefined` as `undefined`.
|
18
|
-
* - Errors on unhandled types instead of skipping keys.
|
19
|
-
* - If an object has a key `kind` with a string value, prints the object as:
|
20
|
-
* SomeKind {
|
21
|
-
* prop: value,
|
22
|
-
* }
|
23
|
-
*/
|
24
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault")["default"];
|
25
4
|
var _createForOfIteratorHelper2 = _interopRequireDefault(require("@babel/runtime/helpers/createForOfIteratorHelper"));
|
26
5
|
function printAST(ast) {
|
@@ -69,9 +48,7 @@ function printASTImpl(ast, indent) {
|
|
69
48
|
_result += indent + '}';
|
70
49
|
return _result;
|
71
50
|
} else if (typeof ast.toJSON === 'function') {
|
72
|
-
return printASTImpl(
|
73
|
-
// $FlowFixMe[incompatible-use] - we have to unsafely assume no arguments here
|
74
|
-
ast.toJSON(), indent);
|
51
|
+
return printASTImpl(ast.toJSON(), indent);
|
75
52
|
} else {
|
76
53
|
var _result2 = '{\n';
|
77
54
|
var _keyIndent = indent + ' ';
|
package/lib/simpleClone.js
CHANGED
@@ -1,31 +1,13 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/**
|
15
|
-
* A helper to create a deep clone of a value, plain Object, or array of such.
|
16
|
-
*
|
17
|
-
* Does not support RegExp, Date, other classes, or self-referential values.
|
18
|
-
*/
|
19
3
|
function simpleClone(value) {
|
20
4
|
if (Array.isArray(value)) {
|
21
|
-
// $FlowFixMe[incompatible-return]
|
22
5
|
return value.map(simpleClone);
|
23
6
|
} else if (value != null && typeof value === 'object') {
|
24
7
|
var result = {};
|
25
8
|
for (var key in value) {
|
26
9
|
result[key] = simpleClone(value[key]);
|
27
10
|
}
|
28
|
-
// $FlowFixMe[incompatible-return]
|
29
11
|
return result;
|
30
12
|
} else {
|
31
13
|
return value;
|
@@ -1,23 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/* global jest */
|
15
|
-
/**
|
16
|
-
* Takes an environment and augments it with a mock implementation of `retain`
|
17
|
-
* that tracks what operations are currently retained. Also returns the Jest mock
|
18
|
-
* `release` function for backwards-compatibility with existing tests, but you
|
19
|
-
* should use `isOperationRetained` for new tests as it is much less error-prone.
|
20
|
-
*/
|
21
3
|
function trackRetentionForEnvironment(environment) {
|
22
4
|
var retainCountsByOperation = new Map();
|
23
5
|
var release = jest.fn(function (id) {
|
@@ -29,9 +11,6 @@ function trackRetentionForEnvironment(environment) {
|
|
29
11
|
retainCountsByOperation.set(id, existing - 1);
|
30
12
|
}
|
31
13
|
});
|
32
|
-
|
33
|
-
// $FlowFixMe[cannot-write] safe to do for mocking
|
34
|
-
// $FlowFixMe[missing-local-annot] error found when enabling Flow LTI mode
|
35
14
|
environment.retain = jest.fn(function (operation) {
|
36
15
|
var _retainCountsByOperat2;
|
37
16
|
var id = operation.request.identifier;
|
package/lib/warnings.js
CHANGED
@@ -1,17 +1,5 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
3
|
-
*
|
4
|
-
* This source code is licensed under the MIT license found in the
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
6
|
-
*
|
7
|
-
*
|
8
|
-
* @format
|
9
|
-
* @oncall relay
|
10
|
-
*/
|
11
|
-
|
12
1
|
'use strict';
|
13
2
|
|
14
|
-
/* global jest */
|
15
3
|
var _require = require('./consoleErrorsAndWarnings'),
|
16
4
|
createConsoleInterceptionSystem = _require.createConsoleInterceptionSystem;
|
17
5
|
var warningsSystem = createConsoleInterceptionSystem('warning', 'expectToWarn', function (impl) {
|
@@ -30,37 +18,15 @@ var warningsSystem = createConsoleInterceptionSystem('warning', 'expectToWarn',
|
|
30
18
|
});
|
31
19
|
});
|
32
20
|
});
|
33
|
-
|
34
|
-
/**
|
35
|
-
* Mocks the `warning` module to turn warnings into errors. Any expected
|
36
|
-
* warnings need to be explicitly expected with `expectWarningWillFire(message)`.
|
37
|
-
*
|
38
|
-
* NOTE: This should be called on top of a test file. The test should NOT
|
39
|
-
* use `jest.resetModules()` or manually mock `warning`.
|
40
|
-
*/
|
41
21
|
function disallowWarnings() {
|
42
22
|
warningsSystem.disallowMessages();
|
43
23
|
}
|
44
|
-
|
45
|
-
/**
|
46
|
-
* Expect a warning with the given message. If the message isn't fired in the
|
47
|
-
* current test, the test will fail.
|
48
|
-
*/
|
49
24
|
function expectWarningWillFire(message, options) {
|
50
25
|
warningsSystem.expectMessageWillFire(message, options);
|
51
26
|
}
|
52
|
-
|
53
|
-
/**
|
54
|
-
* Expect the callback `fn` to trigger the warning message and otherwise fail.
|
55
|
-
*/
|
56
27
|
function expectToWarn(message, fn) {
|
57
28
|
return warningsSystem.expectMessage(message, fn);
|
58
29
|
}
|
59
|
-
|
60
|
-
/**
|
61
|
-
* Expect the callback `fn` to trigger all warning messages (in sequence)
|
62
|
-
* or otherwise fail.
|
63
|
-
*/
|
64
30
|
function expectToWarnMany(messages, fn) {
|
65
31
|
return warningsSystem.expectMessageMany(messages, fn);
|
66
32
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "relay-test-utils-internal",
|
3
3
|
"description": "Internal utilities for testing Relay.",
|
4
|
-
"version": "
|
4
|
+
"version": "16.1.0",
|
5
5
|
"keywords": [
|
6
6
|
"graphql",
|
7
7
|
"relay"
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"dependencies": {
|
18
18
|
"@babel/runtime": "^7.0.0",
|
19
19
|
"fbjs": "^3.0.2",
|
20
|
-
"relay-runtime": "
|
20
|
+
"relay-runtime": "16.1.0"
|
21
21
|
},
|
22
22
|
"directories": {
|
23
23
|
"": "./"
|
@@ -1,4 +1,4 @@
|
|
1
1
|
/**
|
2
|
-
* Relay
|
2
|
+
* Relay v16.1.0
|
3
3
|
*/
|
4
|
-
module.exports=function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=3)}([function(e,n){e.exports=require("@babel/runtime/helpers/interopRequireDefault")},function(e,n,t){"use strict";var r=(0,t(0).default)(t(5)),o=console.error;e.exports={createConsoleInterceptionSystem:function(e,n,t){var i=!1,c=[],a=[],s=[],u=e.charAt(0).toUpperCase()+e.slice(1),l=u+"s",f="disallow".concat(u,"s");function p(e){var n=c.findIndex((function(n){return e.startsWith(n)})),t=a.findIndex((function(n){return e.startsWith(n)}));if(s.length>0&&e.startsWith(s[0]))s.shift();else if(n>=0)c.splice(n,1);else{if(!(t>=0))throw o("Unexpected ".concat(u,": ")+e),new Error("".concat(u,": ")+e);a.splice(t,1)}}function d(t,o){if(s.length>0)throw new Error("Cannot nest ".concat(n,"() calls."));s.push.apply(s,(0,r.default)(t));var i=o();if(s.length>0){var c=s.toString();throw s.length=0,new Error("Expected ".concat(e," in callback: ").concat(c))}return i}return{disallowMessages:function(){if(i)throw new Error("".concat(f," should be called only once."));i=!0,t(p),afterEach((function(){if(a.length=0,s.length=0,c.length>0){var n=new Error("Some ".concat(c.length," expected ").concat(e,"s where not triggered:\n\n")+Array.from(c,(function(e){return" * ".concat(e)})).join("\n")+"\n");throw c.length=0,n}}))},expectMessageWillFire:function(e,n){if(!i)throw new Error("".concat(f," needs to be called before expect").concat(l,"WillFire"));for(var t=!0===(null==n?void 0:n.optional),r=0;r<(null!==(o=null==n?void 0:n.count)&&void 0!==o?o:1);r++){var o;(t?a:c).push(e)}},expectMessage:function(e,n){return d([e],n)},expectMessageMany:d}}}},function(e,n){e.exports=require("relay-runtime")},function(e,n,t){"use strict";var r=t(4),o=r.disallowConsoleErrors,i=r.expectConsoleError,c=r.expectConsoleErrorsMany,a=r.expectConsoleErrorWillFire,s=t(6),u=s.disallowConsoleWarnings,l=s.expectConsoleWarning,f=s.expectConsoleWarningsMany,p=s.expectConsoleWarningWillFire,d=t(7),g=t(9),x=g.FIXTURE_TAG,h=g.generateTestsFromFixtures,y=t(14),v=t(16),w=t(18),b=t(19),m=t(20),W=m.disallowWarnings,E=m.expectToWarn,C=m.expectToWarnMany,M=m.expectWarningWillFire,F=t(21),j=F.createMockEnvironment,S=F.unwrapContainer;e.exports={cannotReadPropertyOfUndefined__DEPRECATED:function(e){return process.version.match(/^v16\.(.+)$/)?"Cannot read properties of undefined (reading '".concat(e,"')"):"Cannot read property '".concat(e,"' of undefined")},createMockEnvironment:j,describeWithFeatureFlags:d,disallowConsoleErrors:o,disallowConsoleWarnings:u,disallowWarnings:W,expectConsoleError:i,expectConsoleErrorsMany:c,expectConsoleErrorWillFire:a,expectConsoleWarningWillFire:p,expectConsoleWarning:l,expectConsoleWarningsMany:f,expectToWarn:E,expectToWarnMany:C,expectWarningWillFire:M,FIXTURE_TAG:x,generateTestsFromFixtures:h,matchers:y,printAST:v,simpleClone:w,trackRetentionForEnvironment:b,unwrapContainer:S}},function(e,n,t){"use strict";var r=(0,t(1).createConsoleInterceptionSystem)("error","expectConsoleError",(function(e){jest.spyOn(console,"error").mockImplementation(e)}));e.exports={disallowConsoleErrors:function(){r.disallowMessages()},expectConsoleErrorWillFire:function(e,n){r.expectMessageWillFire(e,n)},expectConsoleError:function(e,n){return r.expectMessage(e,n)},expectConsoleErrorsMany:function(e,n){return r.expectMessageMany(e,n)}}},function(e,n){e.exports=require("@babel/runtime/helpers/toConsumableArray")},function(e,n,t){"use strict";var r=(0,t(1).createConsoleInterceptionSystem)("warning","expectConsoleWarning",(function(e){jest.spyOn(console,"warn").mockImplementation(e)}));e.exports={disallowConsoleWarnings:function(){r.disallowMessages()},expectConsoleWarningWillFire:function(e,n){r.expectMessageWillFire(e,n)},expectConsoleWarning:function(e,n){return r.expectMessage(e,n)},expectConsoleWarningsMany:function(e,n){return r.expectMessageMany(e,n)}}},function(e,n,t){"use strict";var r=(0,t(0).default)(t(8));e.exports=function(e,n,o){describe.each(e)("".concat(n," - Feature flags: %o"),(function(e){var n;beforeEach((function(){var o=t(2).RelayFeatureFlags;n=(0,r.default)({},o),Object.assign(o,e)})),afterEach((function(){var e=t(2).RelayFeatureFlags;Object.assign(e,n)})),o()}))}},function(e,n){e.exports=require("@babel/runtime/helpers/objectSpread2")},function(e,n,t){"use strict";var r=(0,t(0).default)(t(10)),o=t(11),i=t(12),c=t(13),a=Symbol.for("FIXTURE_TAG");expect.addSnapshotSerializer({print:function(e){return Object.keys(e).map((function(n){return"~~~~~~~~~~ ".concat(n.toUpperCase()," ~~~~~~~~~~\n").concat(e[n])})).join("\n")},test:function(e){return e&&!0===e[a]}}),e.exports={generateTestsFromFixtures:function(e,n){var t=i.readdirSync(e);test("has fixtures in ".concat(e),(function(){expect(t.length>0).toBe(!0)}));var s=t.filter((function(e){return e.startsWith("only.")}));s.length&&(test.skip.each(t.filter((function(e){return!e.startsWith("only.")})))("matches expected output: %s",(function(){})),t=s),test.each(t)("matches expected output: %s",(function(t){var s,u=i.readFileSync(c.join(e,t),"utf8"),l=o(u,n,t);expect((s={},(0,r.default)(s,a,!0),(0,r.default)(s,"input",u),(0,r.default)(s,"output",l),s)).toMatchSnapshot()}))},FIXTURE_TAG:a}},function(e,n){e.exports=require("@babel/runtime/helpers/defineProperty")},function(e,n,t){"use strict";e.exports=function(e,n,t){if(/^# *expected-to-throw/.test(e)||/\.error\.\w+$/.test(t)){var r;try{r=n(e)}catch(e){return"THROWN EXCEPTION:\n\n".concat(e.toString())}throw new Error("Expected test file '".concat(t,"' to throw, but it passed:\n").concat(r))}return n(e)}},function(e,n){e.exports=require("fs")},function(e,n){e.exports=require("path")},function(e,n,t){"use strict";e.exports={toBeDeeplyFrozen:function(e){return function e(n){if(expect(Object.isFrozen(n)).toBe(!0),Array.isArray(n))n.forEach((function(n){return e(n)}));else if("object"==typeof n&&null!==n)for(var t in n)e(n[t])}(e),{pass:!0}},toWarn:function(e,n){var r=this.isNot;function o(e){return e instanceof RegExp?e.toString():JSON.stringify(e)}function i(e){return"["+e.map(o).join(", ")+"]"}function c(e){return e.length?e.map((function(e){return i([!!e[0]].concat(e.slice(1)))})).join(", "):"[]"}var a=t(15);if(!a.mock)throw new Error("toWarn(): Requires `jest.mock('warning')`.");var s=a.mock.calls.length;e();var u=a.mock.calls.slice(s);return n?(Array.isArray(n)||(n=[n]),{pass:!!u.find((function(e){return e.length===n.length+1&&e.every((function(e,t){if(!t)return!e;var r=n[t-1];return r instanceof RegExp?r.test(e):e===r}))})),message:function(){return"Expected ".concat(r?"not ":"","to warn: ")+"".concat(i([!1].concat(n))," but ")+"`warning` received the following calls: "+"".concat(c(u),".")}}):{pass:!!u.filter((function(e){return!e[0]})).length,message:function(){return"Expected ".concat(r?"not ":"","to warn but ")+"`warning` received the following calls: "+"".concat(c(u),".")}}}}},function(e,n){e.exports=require("fbjs/lib/warning")},function(e,n,t){"use strict";var r=(0,t(0).default)(t(17));e.exports=function(e){return function e(n,t){switch(typeof n){case"undefined":return"undefined";case"object":if(null===n)return"null";if(Array.isArray(n)){if(0===n.length)return"[]";var o,i="[\n",c=t+" ",a=(0,r.default)(n);try{for(a.s();!(o=a.n()).done;){var s=o.value;i+=c+e(s,c)+",\n"}}catch(e){a.e(e)}finally{a.f()}return i+=t+"]"}if("string"==typeof n.kind){for(var u="".concat(n.kind," {\n"),l=t+" ",f=0,p=Object.entries(n);f<p.length;f++){var d=p[f],g=d[0],x=d[1];"kind"!==g&&(u+="".concat(l).concat(g,": ").concat(e(x,l),",\n"))}return u+=t+"}"}if("function"==typeof n.toJSON)return e(n.toJSON(),t);for(var h="{\n",y=t+" ",v=0,w=Object.entries(n);v<w.length;v++){var b=w[v],m=b[0],W=b[1];h+="".concat(y).concat(JSON.stringify(m),": ").concat(e(W,y),",\n")}return h+=t+"}";case"string":case"number":case"boolean":return JSON.stringify(n,null,2).replace("\n","\n"+t);default:throw new Error("printAST doesn't handle values where "+"typeof value === '".concat(typeof n,"'."))}}(e,"")}},function(e,n){e.exports=require("@babel/runtime/helpers/createForOfIteratorHelper")},function(e,n,t){"use strict";e.exports=function e(n){if(Array.isArray(n))return n.map(e);if(null!=n&&"object"==typeof n){var t={};for(var r in n)t[r]=e(n[r]);return t}return n}},function(e,n,t){"use strict";e.exports=function(e){var n=new Map,t=jest.fn((function(e){var t,r=null!==(t=n.get(e))&&void 0!==t?t:NaN;1===r?n.delete(e):n.set(e,r-1)}));return e.retain=jest.fn((function(e){var r,o=e.request.identifier,i=null!==(r=n.get(o))&&void 0!==r?r:0;n.set(o,i+1);var c=!1;return{dispose:function(){c||t(o),c=!0}}})),{release_DEPRECATED:t,isOperationRetained:function(e){var t,r=e.request.identifier;return(null!==(t=n.get(r))&&void 0!==t?t:0)>0}}}},function(e,n,t){"use strict";var r=(0,t(1).createConsoleInterceptionSystem)("warning","expectToWarn",(function(e){jest.mock("fbjs/lib/warning",(function(){return jest.fn((function(n,t){for(var r=arguments.length,o=new Array(r>2?r-2:0),i=2;i<r;i++)o[i-2]=arguments[i];if(!n){var c=0,a=t.replace(/%s/g,(function(){return String(o[c++])}));e(a)}}))}))}));e.exports={disallowWarnings:function(){r.disallowMessages()},expectWarningWillFire:function(e,n){r.expectMessageWillFire(e,n)},expectToWarn:function(e,n){return r.expectMessage(e,n)},expectToWarnMany:function(e,n){return r.expectMessageMany(e,n)}}},function(e,n){e.exports=require("relay-test-utils")}]);
|
4
|
+
(()=>{"use strict";var e={115:(e,n,r)=>{e.exports={toBeDeeplyFrozen:function(e){return function e(n){if(expect(Object.isFrozen(n)).toBe(!0),Array.isArray(n))n.forEach((function(n){return e(n)}));else if("object"==typeof n&&null!==n)for(var r in n)e(n[r])}(e),{pass:!0}},toWarn:function(e,n){var t=this.isNot;function o(e){return e instanceof RegExp?e.toString():JSON.stringify(e)}function a(e){return"["+e.map(o).join(", ")+"]"}function i(e){return e.length?e.map((function(e){return a([!!e[0]].concat(e.slice(1)))})).join(", "):"[]"}var c=r(520);if(!c.mock)throw new Error("toWarn(): Requires `jest.mock('warning')`.");var s=c.mock.calls.length;e();var l=c.mock.calls.slice(s);return n?(Array.isArray(n)||(n=[n]),{pass:!!l.find((function(e){return e.length===n.length+1&&e.every((function(e,r){if(!r)return!e;var t=n[r-1];return t instanceof RegExp?t.test(e):e===t}))})),message:function(){return"Expected ".concat(t?"not ":"","to warn: ")+"".concat(a([!1].concat(n))," but ")+"`warning` received the following calls: "+"".concat(i(l),".")}}):{pass:!!l.filter((function(e){return!e[0]})).length,message:function(){return"Expected ".concat(t?"not ":"","to warn but ")+"`warning` received the following calls: "+"".concat(i(l),".")}}}}},815:(e,n,r)=>{var t=(0,r(489).createConsoleInterceptionSystem)("error","expectConsoleError",(function(e){jest.spyOn(console,"error").mockImplementation(e)}));e.exports={disallowConsoleErrors:function(){t.disallowMessages()},expectConsoleErrorWillFire:function(e,n){t.expectMessageWillFire(e,n)},expectConsoleError:function(e,n){return t.expectMessage(e,n)},expectConsoleErrorsMany:function(e,n){return t.expectMessageMany(e,n)}}},489:(e,n,r)=>{var t=(0,r(193).default)(r(759)),o=console.error;e.exports={createConsoleInterceptionSystem:function(e,n,r){var a=!1,i=[],c=[],s=[],l=e.charAt(0).toUpperCase()+e.slice(1),u=l+"s",f="disallow".concat(l,"s");function p(e){var n=i.findIndex((function(n){return e.startsWith(n)})),r=c.findIndex((function(n){return e.startsWith(n)}));if(s.length>0&&e.startsWith(s[0]))s.shift();else if(n>=0)i.splice(n,1);else{if(!(r>=0))throw o("Unexpected ".concat(l,": ")+e),new Error("".concat(l,": ")+e);c.splice(r,1)}}function g(r,o){if(s.length>0)throw new Error("Cannot nest ".concat(n,"() calls."));s.push.apply(s,(0,t.default)(r));var a=o();if(s.length>0){var i=s.toString();throw s.length=0,new Error("Expected ".concat(e," in callback: ").concat(i))}return a}return{disallowMessages:function(){if(a)throw new Error("".concat(f," should be called only once."));a=!0,r(p),afterEach((function(){if(c.length=0,s.length=0,i.length>0){var n=new Error("Some ".concat(i.length," expected ").concat(e,"s where not triggered:\n\n")+Array.from(i,(function(e){return" * ".concat(e)})).join("\n")+"\n");throw i.length=0,n}}))},expectMessageWillFire:function(e,n){if(!a)throw new Error("".concat(f," needs to be called before expect").concat(u,"WillFire"));for(var r=!0===(null==n?void 0:n.optional),t=0;t<(null!==(o=null==n?void 0:n.count)&&void 0!==o?o:1);t++){var o;(r?c:i).push(e)}},expectMessage:function(e,n){return g([e],n)},expectMessageMany:g}}}},15:(e,n,r)=>{var t=(0,r(489).createConsoleInterceptionSystem)("warning","expectConsoleWarning",(function(e){jest.spyOn(console,"warn").mockImplementation(e)}));e.exports={disallowConsoleWarnings:function(){t.disallowMessages()},expectConsoleWarningWillFire:function(e,n){t.expectMessageWillFire(e,n)},expectConsoleWarning:function(e,n){return t.expectMessage(e,n)},expectConsoleWarningsMany:function(e,n){return t.expectMessageMany(e,n)}}},377:(e,n,r)=>{var t=(0,r(193).default)(r(56));e.exports=function(e,n,o){describe.each(e)("".concat(n," - Feature flags: %o"),(function(e){var n;beforeEach((function(){var o=r(268).RelayFeatureFlags;n=(0,t.default)({},o),Object.assign(o,e)})),afterEach((function(){var e=r(268).RelayFeatureFlags;Object.assign(e,n)})),o()}))}},436:(e,n,r)=>{var t=(0,r(193).default)(r(195)),o=r(861),a=r(48),i=r(315),c=Symbol.for("FIXTURE_TAG");expect.addSnapshotSerializer({print:function(e){return Object.keys(e).map((function(n){return"~~~~~~~~~~ ".concat(n.toUpperCase()," ~~~~~~~~~~\n").concat(e[n])})).join("\n")},test:function(e){return e&&!0===e[c]}}),e.exports={generateTestsFromFixtures:function(e,n){var r=a.readdirSync(e);test("has fixtures in ".concat(e),(function(){expect(r.length>0).toBe(!0)}));var s=r.filter((function(e){return e.startsWith("only.")}));s.length&&(test.skip.each(r.filter((function(e){return!e.startsWith("only.")})))("matches expected output: %s",(function(){})),r=s),test.each(r)("matches expected output: %s",(function(r){var s,l=a.readFileSync(i.join(e,r),"utf8"),u=o(l,n,r);expect((s={},(0,t.default)(s,c,!0),(0,t.default)(s,"input",l),(0,t.default)(s,"output",u),s)).toMatchSnapshot()}))},FIXTURE_TAG:c}},861:e=>{e.exports=function(e,n,r){if(/^# *expected-to-throw/.test(e)||/\.error\.\w+$/.test(r)){var t;try{t=n(e)}catch(e){return"THROWN EXCEPTION:\n\n".concat(e.toString())}throw new Error("Expected test file '".concat(r,"' to throw, but it passed:\n").concat(t))}return n(e)}},310:(e,n,r)=>{var t=r(815),o=t.disallowConsoleErrors,a=t.expectConsoleError,i=t.expectConsoleErrorsMany,c=t.expectConsoleErrorWillFire,s=r(15),l=s.disallowConsoleWarnings,u=s.expectConsoleWarning,f=s.expectConsoleWarningsMany,p=s.expectConsoleWarningWillFire,g=r(377),x=r(436),d=x.FIXTURE_TAG,h=x.generateTestsFromFixtures,v=r(115),y=r(805),w=r(85),W=r(455),E=r(791),m=E.disallowWarnings,C=E.expectToWarn,b=E.expectToWarnMany,F=E.expectWarningWillFire,M=r(371),T=M.createMockEnvironment,j=M.unwrapContainer;e.exports={cannotReadPropertyOfUndefined__DEPRECATED:function(e){var n=process.version.match(/^v(\d+)\./),r=null==n?null:parseInt(n[1],10);return null==r||r<16?"Cannot read property '".concat(e,"' of undefined"):"Cannot read properties of undefined (reading '".concat(e,"')")},createMockEnvironment:T,describeWithFeatureFlags:g,disallowConsoleErrors:o,disallowConsoleWarnings:l,disallowWarnings:m,expectConsoleError:a,expectConsoleErrorsMany:i,expectConsoleErrorWillFire:c,expectConsoleWarningWillFire:p,expectConsoleWarning:u,expectConsoleWarningsMany:f,expectToWarn:C,expectToWarnMany:b,expectWarningWillFire:F,FIXTURE_TAG:d,generateTestsFromFixtures:h,matchers:v,printAST:y,simpleClone:w,trackRetentionForEnvironment:W,unwrapContainer:j}},805:(e,n,r)=>{var t=(0,r(193).default)(r(680));function o(e,n){switch(typeof e){case"undefined":return"undefined";case"object":if(null===e)return"null";if(Array.isArray(e)){if(0===e.length)return"[]";var r,a="[\n",i=n+" ",c=(0,t.default)(e);try{for(c.s();!(r=c.n()).done;)a+=i+o(r.value,i)+",\n"}catch(e){c.e(e)}finally{c.f()}return a+(n+"]")}if("string"==typeof e.kind){for(var s="".concat(e.kind," {\n"),l=n+" ",u=0,f=Object.entries(e);u<f.length;u++){var p=f[u],g=p[0],x=p[1];"kind"!==g&&(s+="".concat(l).concat(g,": ").concat(o(x,l),",\n"))}return s+(n+"}")}if("function"==typeof e.toJSON)return o(e.toJSON(),n);for(var d="{\n",h=n+" ",v=0,y=Object.entries(e);v<y.length;v++){var w=y[v],W=w[0],E=w[1];d+="".concat(h).concat(JSON.stringify(W),": ").concat(o(E,h),",\n")}return d+(n+"}");case"string":case"number":case"boolean":return JSON.stringify(e,null,2).replace("\n","\n"+n);default:throw new Error("printAST doesn't handle values where "+"typeof value === '".concat(typeof e,"'."))}}e.exports=function(e){return o(e,"")}},85:e=>{e.exports=function e(n){if(Array.isArray(n))return n.map(e);if(null!=n&&"object"==typeof n){var r={};for(var t in n)r[t]=e(n[t]);return r}return n}},455:e=>{e.exports=function(e){var n=new Map,r=jest.fn((function(e){var r,t=null!==(r=n.get(e))&&void 0!==r?r:NaN;1===t?n.delete(e):n.set(e,t-1)}));return e.retain=jest.fn((function(e){var t,o=e.request.identifier,a=null!==(t=n.get(o))&&void 0!==t?t:0;n.set(o,a+1);var i=!1;return{dispose:function(){i||r(o),i=!0}}})),{release_DEPRECATED:r,isOperationRetained:function(e){var r,t=e.request.identifier;return(null!==(r=n.get(t))&&void 0!==r?r:0)>0}}}},791:(e,n,r)=>{var t=(0,r(489).createConsoleInterceptionSystem)("warning","expectToWarn",(function(e){jest.mock("fbjs/lib/warning",(function(){return jest.fn((function(n,r){for(var t=arguments.length,o=new Array(t>2?t-2:0),a=2;a<t;a++)o[a-2]=arguments[a];if(!n){var i=0,c=r.replace(/%s/g,(function(){return String(o[i++])}));e(c)}}))}))}));e.exports={disallowWarnings:function(){t.disallowMessages()},expectWarningWillFire:function(e,n){t.expectMessageWillFire(e,n)},expectToWarn:function(e,n){return t.expectMessage(e,n)},expectToWarnMany:function(e,n){return t.expectMessageMany(e,n)}}},680:e=>{e.exports=require("@babel/runtime/helpers/createForOfIteratorHelper")},195:e=>{e.exports=require("@babel/runtime/helpers/defineProperty")},193:e=>{e.exports=require("@babel/runtime/helpers/interopRequireDefault")},56:e=>{e.exports=require("@babel/runtime/helpers/objectSpread2")},759:e=>{e.exports=require("@babel/runtime/helpers/toConsumableArray")},520:e=>{e.exports=require("fbjs/lib/warning")},48:e=>{e.exports=require("fs")},315:e=>{e.exports=require("path")},268:e=>{e.exports=require("relay-runtime")},371:e=>{e.exports=require("relay-test-utils")}},n={},r=function r(t){var o=n[t];if(void 0!==o)return o.exports;var a=n[t]={exports:{}};return e[t](a,a.exports,r),a.exports}(310);module.exports.RelayTestUtilsInternal=r})();
|
@@ -1,9 +1,9 @@
|
|
1
1
|
/**
|
2
|
-
* Relay
|
2
|
+
* Relay v16.1.0
|
3
3
|
*
|
4
4
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
5
5
|
*
|
6
6
|
* This source code is licensed under the MIT license found in the
|
7
7
|
* LICENSE file in the root directory of this source tree.
|
8
8
|
*/
|
9
|
-
module.exports=function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=3)}([function(e,n){e.exports=require("@babel/runtime/helpers/interopRequireDefault")},function(e,n,t){"use strict";var r=(0,t(0).default)(t(5)),o=console.error;e.exports={createConsoleInterceptionSystem:function(e,n,t){var i=!1,c=[],a=[],s=[],u=e.charAt(0).toUpperCase()+e.slice(1),l=u+"s",f="disallow".concat(u,"s");function p(e){var n=c.findIndex((function(n){return e.startsWith(n)})),t=a.findIndex((function(n){return e.startsWith(n)}));if(s.length>0&&e.startsWith(s[0]))s.shift();else if(n>=0)c.splice(n,1);else{if(!(t>=0))throw o("Unexpected ".concat(u,": ")+e),new Error("".concat(u,": ")+e);a.splice(t,1)}}function d(t,o){if(s.length>0)throw new Error("Cannot nest ".concat(n,"() calls."));s.push.apply(s,(0,r.default)(t));var i=o();if(s.length>0){var c=s.toString();throw s.length=0,new Error("Expected ".concat(e," in callback: ").concat(c))}return i}return{disallowMessages:function(){if(i)throw new Error("".concat(f," should be called only once."));i=!0,t(p),afterEach((function(){if(a.length=0,s.length=0,c.length>0){var n=new Error("Some ".concat(c.length," expected ").concat(e,"s where not triggered:\n\n")+Array.from(c,(function(e){return" * ".concat(e)})).join("\n")+"\n");throw c.length=0,n}}))},expectMessageWillFire:function(e,n){if(!i)throw new Error("".concat(f," needs to be called before expect").concat(l,"WillFire"));for(var t=!0===(null==n?void 0:n.optional),r=0;r<(null!==(o=null==n?void 0:n.count)&&void 0!==o?o:1);r++){var o;(t?a:c).push(e)}},expectMessage:function(e,n){return d([e],n)},expectMessageMany:d}}}},function(e,n){e.exports=require("relay-runtime")},function(e,n,t){"use strict";var r=t(4),o=r.disallowConsoleErrors,i=r.expectConsoleError,c=r.expectConsoleErrorsMany,a=r.expectConsoleErrorWillFire,s=t(6),u=s.disallowConsoleWarnings,l=s.expectConsoleWarning,f=s.expectConsoleWarningsMany,p=s.expectConsoleWarningWillFire,d=t(7),g=t(9),x=g.FIXTURE_TAG,h=g.generateTestsFromFixtures,y=t(14),v=t(16),w=t(18),b=t(19),m=t(20),W=m.disallowWarnings,E=m.expectToWarn,C=m.expectToWarnMany,M=m.expectWarningWillFire,F=t(21),j=F.createMockEnvironment,S=F.unwrapContainer;e.exports={cannotReadPropertyOfUndefined__DEPRECATED:function(e){return process.version.match(/^v16\.(.+)$/)?"Cannot read properties of undefined (reading '".concat(e,"')"):"Cannot read property '".concat(e,"' of undefined")},createMockEnvironment:j,describeWithFeatureFlags:d,disallowConsoleErrors:o,disallowConsoleWarnings:u,disallowWarnings:W,expectConsoleError:i,expectConsoleErrorsMany:c,expectConsoleErrorWillFire:a,expectConsoleWarningWillFire:p,expectConsoleWarning:l,expectConsoleWarningsMany:f,expectToWarn:E,expectToWarnMany:C,expectWarningWillFire:M,FIXTURE_TAG:x,generateTestsFromFixtures:h,matchers:y,printAST:v,simpleClone:w,trackRetentionForEnvironment:b,unwrapContainer:S}},function(e,n,t){"use strict";var r=(0,t(1).createConsoleInterceptionSystem)("error","expectConsoleError",(function(e){jest.spyOn(console,"error").mockImplementation(e)}));e.exports={disallowConsoleErrors:function(){r.disallowMessages()},expectConsoleErrorWillFire:function(e,n){r.expectMessageWillFire(e,n)},expectConsoleError:function(e,n){return r.expectMessage(e,n)},expectConsoleErrorsMany:function(e,n){return r.expectMessageMany(e,n)}}},function(e,n){e.exports=require("@babel/runtime/helpers/toConsumableArray")},function(e,n,t){"use strict";var r=(0,t(1).createConsoleInterceptionSystem)("warning","expectConsoleWarning",(function(e){jest.spyOn(console,"warn").mockImplementation(e)}));e.exports={disallowConsoleWarnings:function(){r.disallowMessages()},expectConsoleWarningWillFire:function(e,n){r.expectMessageWillFire(e,n)},expectConsoleWarning:function(e,n){return r.expectMessage(e,n)},expectConsoleWarningsMany:function(e,n){return r.expectMessageMany(e,n)}}},function(e,n,t){"use strict";var r=(0,t(0).default)(t(8));e.exports=function(e,n,o){describe.each(e)("".concat(n," - Feature flags: %o"),(function(e){var n;beforeEach((function(){var o=t(2).RelayFeatureFlags;n=(0,r.default)({},o),Object.assign(o,e)})),afterEach((function(){var e=t(2).RelayFeatureFlags;Object.assign(e,n)})),o()}))}},function(e,n){e.exports=require("@babel/runtime/helpers/objectSpread2")},function(e,n,t){"use strict";var r=(0,t(0).default)(t(10)),o=t(11),i=t(12),c=t(13),a=Symbol.for("FIXTURE_TAG");expect.addSnapshotSerializer({print:function(e){return Object.keys(e).map((function(n){return"~~~~~~~~~~ ".concat(n.toUpperCase()," ~~~~~~~~~~\n").concat(e[n])})).join("\n")},test:function(e){return e&&!0===e[a]}}),e.exports={generateTestsFromFixtures:function(e,n){var t=i.readdirSync(e);test("has fixtures in ".concat(e),(function(){expect(t.length>0).toBe(!0)}));var s=t.filter((function(e){return e.startsWith("only.")}));s.length&&(test.skip.each(t.filter((function(e){return!e.startsWith("only.")})))("matches expected output: %s",(function(){})),t=s),test.each(t)("matches expected output: %s",(function(t){var s,u=i.readFileSync(c.join(e,t),"utf8"),l=o(u,n,t);expect((s={},(0,r.default)(s,a,!0),(0,r.default)(s,"input",u),(0,r.default)(s,"output",l),s)).toMatchSnapshot()}))},FIXTURE_TAG:a}},function(e,n){e.exports=require("@babel/runtime/helpers/defineProperty")},function(e,n,t){"use strict";e.exports=function(e,n,t){if(/^# *expected-to-throw/.test(e)||/\.error\.\w+$/.test(t)){var r;try{r=n(e)}catch(e){return"THROWN EXCEPTION:\n\n".concat(e.toString())}throw new Error("Expected test file '".concat(t,"' to throw, but it passed:\n").concat(r))}return n(e)}},function(e,n){e.exports=require("fs")},function(e,n){e.exports=require("path")},function(e,n,t){"use strict";e.exports={toBeDeeplyFrozen:function(e){return function e(n){if(expect(Object.isFrozen(n)).toBe(!0),Array.isArray(n))n.forEach((function(n){return e(n)}));else if("object"==typeof n&&null!==n)for(var t in n)e(n[t])}(e),{pass:!0}},toWarn:function(e,n){var r=this.isNot;function o(e){return e instanceof RegExp?e.toString():JSON.stringify(e)}function i(e){return"["+e.map(o).join(", ")+"]"}function c(e){return e.length?e.map((function(e){return i([!!e[0]].concat(e.slice(1)))})).join(", "):"[]"}var a=t(15);if(!a.mock)throw new Error("toWarn(): Requires `jest.mock('warning')`.");var s=a.mock.calls.length;e();var u=a.mock.calls.slice(s);return n?(Array.isArray(n)||(n=[n]),{pass:!!u.find((function(e){return e.length===n.length+1&&e.every((function(e,t){if(!t)return!e;var r=n[t-1];return r instanceof RegExp?r.test(e):e===r}))})),message:function(){return"Expected ".concat(r?"not ":"","to warn: ")+"".concat(i([!1].concat(n))," but ")+"`warning` received the following calls: "+"".concat(c(u),".")}}):{pass:!!u.filter((function(e){return!e[0]})).length,message:function(){return"Expected ".concat(r?"not ":"","to warn but ")+"`warning` received the following calls: "+"".concat(c(u),".")}}}}},function(e,n){e.exports=require("fbjs/lib/warning")},function(e,n,t){"use strict";var r=(0,t(0).default)(t(17));e.exports=function(e){return function e(n,t){switch(typeof n){case"undefined":return"undefined";case"object":if(null===n)return"null";if(Array.isArray(n)){if(0===n.length)return"[]";var o,i="[\n",c=t+" ",a=(0,r.default)(n);try{for(a.s();!(o=a.n()).done;){var s=o.value;i+=c+e(s,c)+",\n"}}catch(e){a.e(e)}finally{a.f()}return i+=t+"]"}if("string"==typeof n.kind){for(var u="".concat(n.kind," {\n"),l=t+" ",f=0,p=Object.entries(n);f<p.length;f++){var d=p[f],g=d[0],x=d[1];"kind"!==g&&(u+="".concat(l).concat(g,": ").concat(e(x,l),",\n"))}return u+=t+"}"}if("function"==typeof n.toJSON)return e(n.toJSON(),t);for(var h="{\n",y=t+" ",v=0,w=Object.entries(n);v<w.length;v++){var b=w[v],m=b[0],W=b[1];h+="".concat(y).concat(JSON.stringify(m),": ").concat(e(W,y),",\n")}return h+=t+"}";case"string":case"number":case"boolean":return JSON.stringify(n,null,2).replace("\n","\n"+t);default:throw new Error("printAST doesn't handle values where "+"typeof value === '".concat(typeof n,"'."))}}(e,"")}},function(e,n){e.exports=require("@babel/runtime/helpers/createForOfIteratorHelper")},function(e,n,t){"use strict";e.exports=function e(n){if(Array.isArray(n))return n.map(e);if(null!=n&&"object"==typeof n){var t={};for(var r in n)t[r]=e(n[r]);return t}return n}},function(e,n,t){"use strict";e.exports=function(e){var n=new Map,t=jest.fn((function(e){var t,r=null!==(t=n.get(e))&&void 0!==t?t:NaN;1===r?n.delete(e):n.set(e,r-1)}));return e.retain=jest.fn((function(e){var r,o=e.request.identifier,i=null!==(r=n.get(o))&&void 0!==r?r:0;n.set(o,i+1);var c=!1;return{dispose:function(){c||t(o),c=!0}}})),{release_DEPRECATED:t,isOperationRetained:function(e){var t,r=e.request.identifier;return(null!==(t=n.get(r))&&void 0!==t?t:0)>0}}}},function(e,n,t){"use strict";var r=(0,t(1).createConsoleInterceptionSystem)("warning","expectToWarn",(function(e){jest.mock("fbjs/lib/warning",(function(){return jest.fn((function(n,t){for(var r=arguments.length,o=new Array(r>2?r-2:0),i=2;i<r;i++)o[i-2]=arguments[i];if(!n){var c=0,a=t.replace(/%s/g,(function(){return String(o[c++])}));e(a)}}))}))}));e.exports={disallowWarnings:function(){r.disallowMessages()},expectWarningWillFire:function(e,n){r.expectMessageWillFire(e,n)},expectToWarn:function(e,n){return r.expectMessage(e,n)},expectToWarnMany:function(e,n){return r.expectMessageMany(e,n)}}},function(e,n){e.exports=require("relay-test-utils")}]);
|
9
|
+
(()=>{"use strict";var e={115:(e,n,r)=>{e.exports={toBeDeeplyFrozen:function(e){return function e(n){if(expect(Object.isFrozen(n)).toBe(!0),Array.isArray(n))n.forEach((function(n){return e(n)}));else if("object"==typeof n&&null!==n)for(var r in n)e(n[r])}(e),{pass:!0}},toWarn:function(e,n){var t=this.isNot;function o(e){return e instanceof RegExp?e.toString():JSON.stringify(e)}function a(e){return"["+e.map(o).join(", ")+"]"}function i(e){return e.length?e.map((function(e){return a([!!e[0]].concat(e.slice(1)))})).join(", "):"[]"}var c=r(520);if(!c.mock)throw new Error("toWarn(): Requires `jest.mock('warning')`.");var s=c.mock.calls.length;e();var l=c.mock.calls.slice(s);return n?(Array.isArray(n)||(n=[n]),{pass:!!l.find((function(e){return e.length===n.length+1&&e.every((function(e,r){if(!r)return!e;var t=n[r-1];return t instanceof RegExp?t.test(e):e===t}))})),message:function(){return"Expected ".concat(t?"not ":"","to warn: ")+"".concat(a([!1].concat(n))," but ")+"`warning` received the following calls: "+"".concat(i(l),".")}}):{pass:!!l.filter((function(e){return!e[0]})).length,message:function(){return"Expected ".concat(t?"not ":"","to warn but ")+"`warning` received the following calls: "+"".concat(i(l),".")}}}}},815:(e,n,r)=>{var t=(0,r(489).createConsoleInterceptionSystem)("error","expectConsoleError",(function(e){jest.spyOn(console,"error").mockImplementation(e)}));e.exports={disallowConsoleErrors:function(){t.disallowMessages()},expectConsoleErrorWillFire:function(e,n){t.expectMessageWillFire(e,n)},expectConsoleError:function(e,n){return t.expectMessage(e,n)},expectConsoleErrorsMany:function(e,n){return t.expectMessageMany(e,n)}}},489:(e,n,r)=>{var t=(0,r(193).default)(r(759)),o=console.error;e.exports={createConsoleInterceptionSystem:function(e,n,r){var a=!1,i=[],c=[],s=[],l=e.charAt(0).toUpperCase()+e.slice(1),u=l+"s",f="disallow".concat(l,"s");function p(e){var n=i.findIndex((function(n){return e.startsWith(n)})),r=c.findIndex((function(n){return e.startsWith(n)}));if(s.length>0&&e.startsWith(s[0]))s.shift();else if(n>=0)i.splice(n,1);else{if(!(r>=0))throw o("Unexpected ".concat(l,": ")+e),new Error("".concat(l,": ")+e);c.splice(r,1)}}function g(r,o){if(s.length>0)throw new Error("Cannot nest ".concat(n,"() calls."));s.push.apply(s,(0,t.default)(r));var a=o();if(s.length>0){var i=s.toString();throw s.length=0,new Error("Expected ".concat(e," in callback: ").concat(i))}return a}return{disallowMessages:function(){if(a)throw new Error("".concat(f," should be called only once."));a=!0,r(p),afterEach((function(){if(c.length=0,s.length=0,i.length>0){var n=new Error("Some ".concat(i.length," expected ").concat(e,"s where not triggered:\n\n")+Array.from(i,(function(e){return" * ".concat(e)})).join("\n")+"\n");throw i.length=0,n}}))},expectMessageWillFire:function(e,n){if(!a)throw new Error("".concat(f," needs to be called before expect").concat(u,"WillFire"));for(var r=!0===(null==n?void 0:n.optional),t=0;t<(null!==(o=null==n?void 0:n.count)&&void 0!==o?o:1);t++){var o;(r?c:i).push(e)}},expectMessage:function(e,n){return g([e],n)},expectMessageMany:g}}}},15:(e,n,r)=>{var t=(0,r(489).createConsoleInterceptionSystem)("warning","expectConsoleWarning",(function(e){jest.spyOn(console,"warn").mockImplementation(e)}));e.exports={disallowConsoleWarnings:function(){t.disallowMessages()},expectConsoleWarningWillFire:function(e,n){t.expectMessageWillFire(e,n)},expectConsoleWarning:function(e,n){return t.expectMessage(e,n)},expectConsoleWarningsMany:function(e,n){return t.expectMessageMany(e,n)}}},377:(e,n,r)=>{var t=(0,r(193).default)(r(56));e.exports=function(e,n,o){describe.each(e)("".concat(n," - Feature flags: %o"),(function(e){var n;beforeEach((function(){var o=r(268).RelayFeatureFlags;n=(0,t.default)({},o),Object.assign(o,e)})),afterEach((function(){var e=r(268).RelayFeatureFlags;Object.assign(e,n)})),o()}))}},436:(e,n,r)=>{var t=(0,r(193).default)(r(195)),o=r(861),a=r(48),i=r(315),c=Symbol.for("FIXTURE_TAG");expect.addSnapshotSerializer({print:function(e){return Object.keys(e).map((function(n){return"~~~~~~~~~~ ".concat(n.toUpperCase()," ~~~~~~~~~~\n").concat(e[n])})).join("\n")},test:function(e){return e&&!0===e[c]}}),e.exports={generateTestsFromFixtures:function(e,n){var r=a.readdirSync(e);test("has fixtures in ".concat(e),(function(){expect(r.length>0).toBe(!0)}));var s=r.filter((function(e){return e.startsWith("only.")}));s.length&&(test.skip.each(r.filter((function(e){return!e.startsWith("only.")})))("matches expected output: %s",(function(){})),r=s),test.each(r)("matches expected output: %s",(function(r){var s,l=a.readFileSync(i.join(e,r),"utf8"),u=o(l,n,r);expect((s={},(0,t.default)(s,c,!0),(0,t.default)(s,"input",l),(0,t.default)(s,"output",u),s)).toMatchSnapshot()}))},FIXTURE_TAG:c}},861:e=>{e.exports=function(e,n,r){if(/^# *expected-to-throw/.test(e)||/\.error\.\w+$/.test(r)){var t;try{t=n(e)}catch(e){return"THROWN EXCEPTION:\n\n".concat(e.toString())}throw new Error("Expected test file '".concat(r,"' to throw, but it passed:\n").concat(t))}return n(e)}},310:(e,n,r)=>{var t=r(815),o=t.disallowConsoleErrors,a=t.expectConsoleError,i=t.expectConsoleErrorsMany,c=t.expectConsoleErrorWillFire,s=r(15),l=s.disallowConsoleWarnings,u=s.expectConsoleWarning,f=s.expectConsoleWarningsMany,p=s.expectConsoleWarningWillFire,g=r(377),x=r(436),d=x.FIXTURE_TAG,h=x.generateTestsFromFixtures,v=r(115),y=r(805),w=r(85),W=r(455),E=r(791),m=E.disallowWarnings,C=E.expectToWarn,b=E.expectToWarnMany,F=E.expectWarningWillFire,M=r(371),T=M.createMockEnvironment,j=M.unwrapContainer;e.exports={cannotReadPropertyOfUndefined__DEPRECATED:function(e){var n=process.version.match(/^v(\d+)\./),r=null==n?null:parseInt(n[1],10);return null==r||r<16?"Cannot read property '".concat(e,"' of undefined"):"Cannot read properties of undefined (reading '".concat(e,"')")},createMockEnvironment:T,describeWithFeatureFlags:g,disallowConsoleErrors:o,disallowConsoleWarnings:l,disallowWarnings:m,expectConsoleError:a,expectConsoleErrorsMany:i,expectConsoleErrorWillFire:c,expectConsoleWarningWillFire:p,expectConsoleWarning:u,expectConsoleWarningsMany:f,expectToWarn:C,expectToWarnMany:b,expectWarningWillFire:F,FIXTURE_TAG:d,generateTestsFromFixtures:h,matchers:v,printAST:y,simpleClone:w,trackRetentionForEnvironment:W,unwrapContainer:j}},805:(e,n,r)=>{var t=(0,r(193).default)(r(680));function o(e,n){switch(typeof e){case"undefined":return"undefined";case"object":if(null===e)return"null";if(Array.isArray(e)){if(0===e.length)return"[]";var r,a="[\n",i=n+" ",c=(0,t.default)(e);try{for(c.s();!(r=c.n()).done;)a+=i+o(r.value,i)+",\n"}catch(e){c.e(e)}finally{c.f()}return a+(n+"]")}if("string"==typeof e.kind){for(var s="".concat(e.kind," {\n"),l=n+" ",u=0,f=Object.entries(e);u<f.length;u++){var p=f[u],g=p[0],x=p[1];"kind"!==g&&(s+="".concat(l).concat(g,": ").concat(o(x,l),",\n"))}return s+(n+"}")}if("function"==typeof e.toJSON)return o(e.toJSON(),n);for(var d="{\n",h=n+" ",v=0,y=Object.entries(e);v<y.length;v++){var w=y[v],W=w[0],E=w[1];d+="".concat(h).concat(JSON.stringify(W),": ").concat(o(E,h),",\n")}return d+(n+"}");case"string":case"number":case"boolean":return JSON.stringify(e,null,2).replace("\n","\n"+n);default:throw new Error("printAST doesn't handle values where "+"typeof value === '".concat(typeof e,"'."))}}e.exports=function(e){return o(e,"")}},85:e=>{e.exports=function e(n){if(Array.isArray(n))return n.map(e);if(null!=n&&"object"==typeof n){var r={};for(var t in n)r[t]=e(n[t]);return r}return n}},455:e=>{e.exports=function(e){var n=new Map,r=jest.fn((function(e){var r,t=null!==(r=n.get(e))&&void 0!==r?r:NaN;1===t?n.delete(e):n.set(e,t-1)}));return e.retain=jest.fn((function(e){var t,o=e.request.identifier,a=null!==(t=n.get(o))&&void 0!==t?t:0;n.set(o,a+1);var i=!1;return{dispose:function(){i||r(o),i=!0}}})),{release_DEPRECATED:r,isOperationRetained:function(e){var r,t=e.request.identifier;return(null!==(r=n.get(t))&&void 0!==r?r:0)>0}}}},791:(e,n,r)=>{var t=(0,r(489).createConsoleInterceptionSystem)("warning","expectToWarn",(function(e){jest.mock("fbjs/lib/warning",(function(){return jest.fn((function(n,r){for(var t=arguments.length,o=new Array(t>2?t-2:0),a=2;a<t;a++)o[a-2]=arguments[a];if(!n){var i=0,c=r.replace(/%s/g,(function(){return String(o[i++])}));e(c)}}))}))}));e.exports={disallowWarnings:function(){t.disallowMessages()},expectWarningWillFire:function(e,n){t.expectMessageWillFire(e,n)},expectToWarn:function(e,n){return t.expectMessage(e,n)},expectToWarnMany:function(e,n){return t.expectMessageMany(e,n)}}},680:e=>{e.exports=require("@babel/runtime/helpers/createForOfIteratorHelper")},195:e=>{e.exports=require("@babel/runtime/helpers/defineProperty")},193:e=>{e.exports=require("@babel/runtime/helpers/interopRequireDefault")},56:e=>{e.exports=require("@babel/runtime/helpers/objectSpread2")},759:e=>{e.exports=require("@babel/runtime/helpers/toConsumableArray")},520:e=>{e.exports=require("fbjs/lib/warning")},48:e=>{e.exports=require("fs")},315:e=>{e.exports=require("path")},268:e=>{e.exports=require("relay-runtime")},371:e=>{e.exports=require("relay-test-utils")}},n={},r=function r(t){var o=n[t];if(void 0!==o)return o.exports;var a=n[t]={exports:{}};return e[t](a,a.exports,r),a.exports}(310);module.exports.RelayTestUtilsInternal=r})();
|