relay-test-utils-internal 18.1.0 → 19.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/describeWithFeatureFlags.js.flow +2 -0
- package/index.js +1 -1
- package/index.js.flow +4 -1
- package/injectPromisePolyfill__DEPRECATED.js.flow +33 -0
- package/lib/index.js +3 -1
- package/lib/injectPromisePolyfill__DEPRECATED.js +13 -0
- package/package.json +2 -2
- package/relay-test-utils-internal.js +0 -4
- package/relay-test-utils-internal.min.js +0 -9
@@ -56,10 +56,12 @@ function describeWithFeatureFlags(
|
|
56
56
|
beforeEach(() => {
|
57
57
|
const {RelayFeatureFlags} = require('relay-runtime');
|
58
58
|
originalFlags = {...RelayFeatureFlags};
|
59
|
+
// $FlowFixMe[unsafe-object-assign]
|
59
60
|
Object.assign(RelayFeatureFlags, flags);
|
60
61
|
});
|
61
62
|
afterEach(() => {
|
62
63
|
const {RelayFeatureFlags} = require('relay-runtime'); // re-import in case of jest module resets
|
64
|
+
// $FlowFixMe[unsafe-object-assign]
|
63
65
|
Object.assign(RelayFeatureFlags, originalFlags);
|
64
66
|
});
|
65
67
|
body();
|
package/index.js
CHANGED
package/index.js.flow
CHANGED
@@ -28,6 +28,7 @@ const {
|
|
28
28
|
FIXTURE_TAG,
|
29
29
|
generateTestsFromFixtures,
|
30
30
|
} = require('./generateTestsFromFixtures');
|
31
|
+
const injectPromisePolyfill__DEPRECATED = require('./injectPromisePolyfill__DEPRECATED');
|
31
32
|
const Matchers = require('./Matchers');
|
32
33
|
const printAST = require('./printAST');
|
33
34
|
const simpleClone = require('./simpleClone');
|
@@ -48,6 +49,7 @@ const {createMockEnvironment, unwrapContainer} = require('relay-test-utils');
|
|
48
49
|
function cannotReadPropertyOfUndefined__DEPRECATED(
|
49
50
|
propertyName: string,
|
50
51
|
): string {
|
52
|
+
// $FlowFixMe[cannot-resolve-name]
|
51
53
|
const matches = process.version.match(/^v(\d+)\./);
|
52
54
|
const majorVersion = matches == null ? null : parseInt(matches[1], 10);
|
53
55
|
if (majorVersion == null || majorVersion < 16) {
|
@@ -77,14 +79,15 @@ module.exports = {
|
|
77
79
|
expectConsoleError,
|
78
80
|
expectConsoleErrorsMany,
|
79
81
|
expectConsoleErrorWillFire,
|
80
|
-
expectConsoleWarningWillFire,
|
81
82
|
expectConsoleWarning,
|
82
83
|
expectConsoleWarningsMany,
|
84
|
+
expectConsoleWarningWillFire,
|
83
85
|
expectToWarn,
|
84
86
|
expectToWarnMany,
|
85
87
|
expectWarningWillFire,
|
86
88
|
FIXTURE_TAG,
|
87
89
|
generateTestsFromFixtures,
|
90
|
+
injectPromisePolyfill__DEPRECATED,
|
88
91
|
matchers: Matchers,
|
89
92
|
printAST,
|
90
93
|
simpleClone,
|
@@ -0,0 +1,33 @@
|
|
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
|
+
'use strict';
|
12
|
+
|
13
|
+
/**
|
14
|
+
* Provides backwards compatability for unit tests relying on promise-polyfill
|
15
|
+
*
|
16
|
+
* Polyfill implementations and native promises have subtle differences in scheduling
|
17
|
+
* which can break async tests.
|
18
|
+
*
|
19
|
+
* This should be removed once all tests have been migrated off of ReactTestRenderer and polyfilled promises.
|
20
|
+
*/
|
21
|
+
function injectPromisePolyfill_DEPRECATED() {
|
22
|
+
let originalPromise;
|
23
|
+
beforeAll(() => {
|
24
|
+
originalPromise = global.Promise;
|
25
|
+
global.Promise = require('promise-polyfill');
|
26
|
+
});
|
27
|
+
|
28
|
+
afterAll(() => {
|
29
|
+
global.Promise = originalPromise;
|
30
|
+
});
|
31
|
+
}
|
32
|
+
|
33
|
+
module.exports = injectPromisePolyfill_DEPRECATED;
|
package/lib/index.js
CHANGED
@@ -14,6 +14,7 @@ var describeWithFeatureFlags = require('./describeWithFeatureFlags');
|
|
14
14
|
var _require3 = require('./generateTestsFromFixtures'),
|
15
15
|
FIXTURE_TAG = _require3.FIXTURE_TAG,
|
16
16
|
generateTestsFromFixtures = _require3.generateTestsFromFixtures;
|
17
|
+
var injectPromisePolyfill__DEPRECATED = require('./injectPromisePolyfill__DEPRECATED');
|
17
18
|
var Matchers = require('./Matchers');
|
18
19
|
var printAST = require('./printAST');
|
19
20
|
var simpleClone = require('./simpleClone');
|
@@ -53,14 +54,15 @@ module.exports = {
|
|
53
54
|
expectConsoleError: expectConsoleError,
|
54
55
|
expectConsoleErrorsMany: expectConsoleErrorsMany,
|
55
56
|
expectConsoleErrorWillFire: expectConsoleErrorWillFire,
|
56
|
-
expectConsoleWarningWillFire: expectConsoleWarningWillFire,
|
57
57
|
expectConsoleWarning: expectConsoleWarning,
|
58
58
|
expectConsoleWarningsMany: expectConsoleWarningsMany,
|
59
|
+
expectConsoleWarningWillFire: expectConsoleWarningWillFire,
|
59
60
|
expectToWarn: expectToWarn,
|
60
61
|
expectToWarnMany: expectToWarnMany,
|
61
62
|
expectWarningWillFire: expectWarningWillFire,
|
62
63
|
FIXTURE_TAG: FIXTURE_TAG,
|
63
64
|
generateTestsFromFixtures: generateTestsFromFixtures,
|
65
|
+
injectPromisePolyfill__DEPRECATED: injectPromisePolyfill__DEPRECATED,
|
64
66
|
matchers: Matchers,
|
65
67
|
printAST: printAST,
|
66
68
|
simpleClone: simpleClone,
|
@@ -0,0 +1,13 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
function injectPromisePolyfill_DEPRECATED() {
|
4
|
+
var originalPromise;
|
5
|
+
beforeAll(function () {
|
6
|
+
originalPromise = global.Promise;
|
7
|
+
global.Promise = require('promise-polyfill');
|
8
|
+
});
|
9
|
+
afterAll(function () {
|
10
|
+
global.Promise = originalPromise;
|
11
|
+
});
|
12
|
+
}
|
13
|
+
module.exports = injectPromisePolyfill_DEPRECATED;
|
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": "19.0.0",
|
5
5
|
"keywords": [
|
6
6
|
"graphql",
|
7
7
|
"relay"
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"dependencies": {
|
18
18
|
"@babel/runtime": "^7.25.0",
|
19
19
|
"fbjs": "^3.0.2",
|
20
|
-
"relay-runtime": "
|
20
|
+
"relay-runtime": "19.0.0"
|
21
21
|
},
|
22
22
|
"directories": {
|
23
23
|
"": "./"
|
@@ -1,4 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Relay v18.1.0
|
3
|
-
*/
|
4
|
-
(()=>{"use strict";var e={115:(e,n,t)=>{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 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 s=t(520);if(!s.mock)throw new Error("toWarn(): Requires `jest.mock('warning')`.");var c=s.mock.calls.length;e();var l=s.mock.calls.slice(c);return n?(Array.isArray(n)||(n=[n]),{pass:!!l.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(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(r?"not ":"","to warn but ")+"`warning` received the following calls: "+"".concat(i(l),".")}}}}},815:(e,n,t)=>{var r=(0,t(489).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)}}},489:(e,n,t)=>{var r=(0,t(193).default)(t(759)),o=console.error;e.exports={createConsoleInterceptionSystem:function(e,n,t){var a=!1,i=[],s=[],c=[],l=e.charAt(0).toUpperCase()+e.slice(1),u=l+"s",p="disallow".concat(l,"s");function f(e){var n=i.findIndex((function(n){return e.startsWith(n)})),t=s.findIndex((function(n){return e.startsWith(n)}));if(c.length>0&&e.startsWith(c[0]))c.shift();else if(n>=0)i.splice(n,1);else{if(!(t>=0))throw o("Unexpected ".concat(l,": ")+e),new Error("".concat(l,": ")+e);s.splice(t,1)}}function g(t,o){if(c.length>0)throw new Error("Cannot nest ".concat(n,"() calls."));c.push.apply(c,(0,r.default)(t));var a=o();if(c.length>0){var i=c.toString();throw c.length=0,new Error("Expected ".concat(e," in callback: ").concat(i))}return a}return{disallowMessages:function(){if(a)throw new Error("".concat(p," should be called only once."));a=!0,t(f),afterEach((function(){if(s.length=0,c.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(p," needs to be called before expect").concat(u,"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?s:i).push(e)}},expectMessage:function(e,n){return g([e],n)},expectMessageMany:g}}}},15:(e,n,t)=>{var r=(0,t(489).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)}}},377:(e,n,t)=>{var r=(0,t(193).default)(t(56));e.exports=function(e,n,o){describe.each(e)("".concat(n," - Feature flags: %o"),(function(e){var n;beforeEach((function(){var o=t(268).RelayFeatureFlags;n=(0,r.default)({},o),Object.assign(o,e)})),afterEach((function(){var e=t(268).RelayFeatureFlags;Object.assign(e,n)})),o()}))}},436:(e,n,t)=>{var r=(0,t(193).default)(t(195)),o=t(861),a=t(48),i=t(315),s=Symbol.for("FIXTURE_TAG");expect.addSnapshotSerializer({serialize: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[s]}}),e.exports={generateTestsFromFixtures:function(e,n){var t=a.readdirSync(e);test("has fixtures in ".concat(e),(function(){expect(t.length>0).toBe(!0)}));var c=t.filter((function(e){return e.startsWith("only.")}));c.length&&(test.skip.each(t.filter((function(e){return!e.startsWith("only.")})))("matches expected output: %s",(function(){})),t=c),test.each(t)("matches expected output: %s",(function(t){var c,l=a.readFileSync(i.join(e,t),"utf8"),u=o(l,n,t);expect((c={},(0,r.default)(c,s,!0),(0,r.default)(c,"input",l),(0,r.default)(c,"output",u),c)).toMatchSnapshot()}))},FIXTURE_TAG:s}},861:e=>{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)}},310:(e,n,t)=>{var r=t(815),o=r.disallowConsoleErrors,a=r.expectConsoleError,i=r.expectConsoleErrorsMany,s=r.expectConsoleErrorWillFire,c=t(15),l=c.disallowConsoleWarnings,u=c.expectConsoleWarning,p=c.expectConsoleWarningsMany,f=c.expectConsoleWarningWillFire,g=t(377),d=t(436),x=d.FIXTURE_TAG,h=d.generateTestsFromFixtures,v=t(115),y=t(805),w=t(85),W=t(455),E=t(791),m=E.disallowWarnings,C=E.expectToWarn,b=E.expectToWarnMany,F=E.expectWarningWillFire,M=t(371),T=M.createMockEnvironment,j=M.unwrapContainer;e.exports={cannotReadPropertyOfUndefined__DEPRECATED:function(e){var n=process.version.match(/^v(\d+)\./),t=null==n?null:parseInt(n[1],10);return null==t||t<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:s,expectConsoleWarningWillFire:f,expectConsoleWarning:u,expectConsoleWarningsMany:p,expectToWarn:C,expectToWarnMany:b,expectWarningWillFire:F,FIXTURE_TAG:x,generateTestsFromFixtures:h,matchers:v,printAST:y,simpleClone:w,skipIf:function(e){for(var n,t=arguments.length,r=new Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];var a=r.length>0?r[0]:"N/A";console.warn('The test "'.concat(a,'" is being skipped in open source. TODO: T192916613')),"true"===e?(n=test).skip.apply(n,r):test.apply(void 0,r)},trackRetentionForEnvironment:W,unwrapContainer:j}},805:(e,n,t)=>{var r=(0,t(193).default)(t(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 t,a="[\n",i=n+" ",s=(0,r.default)(e);try{for(s.s();!(t=s.n()).done;)a+=i+o(t.value,i)+",\n"}catch(e){s.e(e)}finally{s.f()}return a+(n+"]")}if("string"==typeof e.kind){for(var c="".concat(e.kind," {\n"),l=n+" ",u=0,p=Object.entries(e);u<p.length;u++){var f=p[u],g=f[0],d=f[1];"kind"!==g&&(c+="".concat(l).concat(g,": ").concat(o(d,l),",\n"))}return c+(n+"}")}if("function"==typeof e.toJSON)return o(e.toJSON(),n);for(var x="{\n",h=n+" ",v=0,y=Object.entries(e);v<y.length;v++){var w=y[v],W=w[0],E=w[1];x+="".concat(h).concat(JSON.stringify(W),": ").concat(o(E,h),",\n")}return x+(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 t={};for(var r in n)t[r]=e(n[r]);return t}return n}},455:e=>{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,a=null!==(r=n.get(o))&&void 0!==r?r:0;n.set(o,a+1);var i=!1;return{dispose:function(){i||t(o),i=!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}}}},791:(e,n,t)=>{var r=(0,t(489).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),a=2;a<r;a++)o[a-2]=arguments[a];if(!n){var i=0,s=t.replace(/%s/g,(function(){return String(o[i++])}));e(s)}}))}))}));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)}}},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={},t=function t(r){var o=n[r];if(void 0!==o)return o.exports;var a=n[r]={exports:{}};return e[r](a,a.exports,t),a.exports}(310);module.exports.RelayTestUtilsInternal=t})();
|
@@ -1,9 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Relay v18.1.0
|
3
|
-
*
|
4
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
5
|
-
*
|
6
|
-
* This source code is licensed under the MIT license found in the
|
7
|
-
* LICENSE file in the root directory of this source tree.
|
8
|
-
*/
|
9
|
-
(()=>{"use strict";var e={115:(e,n,t)=>{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 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 s=t(520);if(!s.mock)throw new Error("toWarn(): Requires `jest.mock('warning')`.");var c=s.mock.calls.length;e();var l=s.mock.calls.slice(c);return n?(Array.isArray(n)||(n=[n]),{pass:!!l.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(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(r?"not ":"","to warn but ")+"`warning` received the following calls: "+"".concat(i(l),".")}}}}},815:(e,n,t)=>{var r=(0,t(489).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)}}},489:(e,n,t)=>{var r=(0,t(193).default)(t(759)),o=console.error;e.exports={createConsoleInterceptionSystem:function(e,n,t){var a=!1,i=[],s=[],c=[],l=e.charAt(0).toUpperCase()+e.slice(1),u=l+"s",p="disallow".concat(l,"s");function f(e){var n=i.findIndex((function(n){return e.startsWith(n)})),t=s.findIndex((function(n){return e.startsWith(n)}));if(c.length>0&&e.startsWith(c[0]))c.shift();else if(n>=0)i.splice(n,1);else{if(!(t>=0))throw o("Unexpected ".concat(l,": ")+e),new Error("".concat(l,": ")+e);s.splice(t,1)}}function g(t,o){if(c.length>0)throw new Error("Cannot nest ".concat(n,"() calls."));c.push.apply(c,(0,r.default)(t));var a=o();if(c.length>0){var i=c.toString();throw c.length=0,new Error("Expected ".concat(e," in callback: ").concat(i))}return a}return{disallowMessages:function(){if(a)throw new Error("".concat(p," should be called only once."));a=!0,t(f),afterEach((function(){if(s.length=0,c.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(p," needs to be called before expect").concat(u,"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?s:i).push(e)}},expectMessage:function(e,n){return g([e],n)},expectMessageMany:g}}}},15:(e,n,t)=>{var r=(0,t(489).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)}}},377:(e,n,t)=>{var r=(0,t(193).default)(t(56));e.exports=function(e,n,o){describe.each(e)("".concat(n," - Feature flags: %o"),(function(e){var n;beforeEach((function(){var o=t(268).RelayFeatureFlags;n=(0,r.default)({},o),Object.assign(o,e)})),afterEach((function(){var e=t(268).RelayFeatureFlags;Object.assign(e,n)})),o()}))}},436:(e,n,t)=>{var r=(0,t(193).default)(t(195)),o=t(861),a=t(48),i=t(315),s=Symbol.for("FIXTURE_TAG");expect.addSnapshotSerializer({serialize: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[s]}}),e.exports={generateTestsFromFixtures:function(e,n){var t=a.readdirSync(e);test("has fixtures in ".concat(e),(function(){expect(t.length>0).toBe(!0)}));var c=t.filter((function(e){return e.startsWith("only.")}));c.length&&(test.skip.each(t.filter((function(e){return!e.startsWith("only.")})))("matches expected output: %s",(function(){})),t=c),test.each(t)("matches expected output: %s",(function(t){var c,l=a.readFileSync(i.join(e,t),"utf8"),u=o(l,n,t);expect((c={},(0,r.default)(c,s,!0),(0,r.default)(c,"input",l),(0,r.default)(c,"output",u),c)).toMatchSnapshot()}))},FIXTURE_TAG:s}},861:e=>{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)}},310:(e,n,t)=>{var r=t(815),o=r.disallowConsoleErrors,a=r.expectConsoleError,i=r.expectConsoleErrorsMany,s=r.expectConsoleErrorWillFire,c=t(15),l=c.disallowConsoleWarnings,u=c.expectConsoleWarning,p=c.expectConsoleWarningsMany,f=c.expectConsoleWarningWillFire,g=t(377),d=t(436),x=d.FIXTURE_TAG,h=d.generateTestsFromFixtures,v=t(115),y=t(805),w=t(85),W=t(455),E=t(791),m=E.disallowWarnings,C=E.expectToWarn,b=E.expectToWarnMany,F=E.expectWarningWillFire,M=t(371),T=M.createMockEnvironment,j=M.unwrapContainer;e.exports={cannotReadPropertyOfUndefined__DEPRECATED:function(e){var n=process.version.match(/^v(\d+)\./),t=null==n?null:parseInt(n[1],10);return null==t||t<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:s,expectConsoleWarningWillFire:f,expectConsoleWarning:u,expectConsoleWarningsMany:p,expectToWarn:C,expectToWarnMany:b,expectWarningWillFire:F,FIXTURE_TAG:x,generateTestsFromFixtures:h,matchers:v,printAST:y,simpleClone:w,skipIf:function(e){for(var n,t=arguments.length,r=new Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];var a=r.length>0?r[0]:"N/A";console.warn('The test "'.concat(a,'" is being skipped in open source. TODO: T192916613')),"true"===e?(n=test).skip.apply(n,r):test.apply(void 0,r)},trackRetentionForEnvironment:W,unwrapContainer:j}},805:(e,n,t)=>{var r=(0,t(193).default)(t(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 t,a="[\n",i=n+" ",s=(0,r.default)(e);try{for(s.s();!(t=s.n()).done;)a+=i+o(t.value,i)+",\n"}catch(e){s.e(e)}finally{s.f()}return a+(n+"]")}if("string"==typeof e.kind){for(var c="".concat(e.kind," {\n"),l=n+" ",u=0,p=Object.entries(e);u<p.length;u++){var f=p[u],g=f[0],d=f[1];"kind"!==g&&(c+="".concat(l).concat(g,": ").concat(o(d,l),",\n"))}return c+(n+"}")}if("function"==typeof e.toJSON)return o(e.toJSON(),n);for(var x="{\n",h=n+" ",v=0,y=Object.entries(e);v<y.length;v++){var w=y[v],W=w[0],E=w[1];x+="".concat(h).concat(JSON.stringify(W),": ").concat(o(E,h),",\n")}return x+(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 t={};for(var r in n)t[r]=e(n[r]);return t}return n}},455:e=>{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,a=null!==(r=n.get(o))&&void 0!==r?r:0;n.set(o,a+1);var i=!1;return{dispose:function(){i||t(o),i=!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}}}},791:(e,n,t)=>{var r=(0,t(489).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),a=2;a<r;a++)o[a-2]=arguments[a];if(!n){var i=0,s=t.replace(/%s/g,(function(){return String(o[i++])}));e(s)}}))}))}));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)}}},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={},t=function t(r){var o=n[r];if(void 0!==o)return o.exports;var a=n[r]={exports:{}};return e[r](a,a.exports,t),a.exports}(310);module.exports.RelayTestUtilsInternal=t})();
|