├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── __mocks__ │ └── apolloServer.ts ├── __tests__ │ └── createTestClient.ts └── index.ts ├── tsconfig.json └── yarn.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/package.json -------------------------------------------------------------------------------- /src/__mocks__/apolloServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/src/__mocks__/apolloServer.ts -------------------------------------------------------------------------------- /src/__tests__/createTestClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/src/__tests__/createTestClient.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/apollo-server-integration-testing/HEAD/yarn.lock --------------------------------------------------------------------------------