├── .github └── workflows │ ├── main.yml │ └── size.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── README.md └── modules.md ├── package.json ├── src ├── faker │ ├── index.ts │ ├── indexed.json │ ├── tests.js │ └── types.ts ├── fuse │ ├── index.ts │ └── types.ts ├── index.ts ├── relay-test-utils │ ├── RelayMockPayloadGenerator.ts │ └── index.ts └── utils.ts ├── test ├── __snapshots__ │ └── createRelayMockEnvironmentHook.test.ts.snap ├── createRelayMockEnvironmentHook.test.ts └── generator.test.ts ├── tsconfig.json └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/.github/workflows/size.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | .vscode 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/docs/modules.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/package.json -------------------------------------------------------------------------------- /src/faker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/faker/index.ts -------------------------------------------------------------------------------- /src/faker/indexed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/faker/indexed.json -------------------------------------------------------------------------------- /src/faker/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/faker/tests.js -------------------------------------------------------------------------------- /src/faker/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/faker/types.ts -------------------------------------------------------------------------------- /src/fuse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/fuse/index.ts -------------------------------------------------------------------------------- /src/fuse/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/fuse/types.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/relay-test-utils/RelayMockPayloadGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/relay-test-utils/RelayMockPayloadGenerator.ts -------------------------------------------------------------------------------- /src/relay-test-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/relay-test-utils/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/__snapshots__/createRelayMockEnvironmentHook.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/test/__snapshots__/createRelayMockEnvironmentHook.test.ts.snap -------------------------------------------------------------------------------- /test/createRelayMockEnvironmentHook.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/test/createRelayMockEnvironmentHook.test.ts -------------------------------------------------------------------------------- /test/generator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/test/generator.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardguerre/use-relay-mock-environment/HEAD/yarn.lock --------------------------------------------------------------------------------