├── .circleci └── config.yml ├── .gitignore ├── README.md ├── package.json ├── src └── index.ts ├── test ├── cypress.json ├── cypress │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── resolvers.spec.ts │ ├── plugins │ │ └── index.js │ ├── support │ │ └── index.js │ ├── test-schema.graphql │ └── tsconfig.json └── test-graphql-app │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.js │ └── index.js │ └── yarn.lock ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:3000/" 3 | } 4 | -------------------------------------------------------------------------------- /test/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/cypress/fixtures/example.json -------------------------------------------------------------------------------- /test/cypress/integration/resolvers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/cypress/integration/resolvers.spec.ts -------------------------------------------------------------------------------- /test/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/cypress/plugins/index.js -------------------------------------------------------------------------------- /test/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/cypress/support/index.js -------------------------------------------------------------------------------- /test/cypress/test-schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/cypress/test-schema.graphql -------------------------------------------------------------------------------- /test/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/cypress/tsconfig.json -------------------------------------------------------------------------------- /test/test-graphql-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/package.json -------------------------------------------------------------------------------- /test/test-graphql-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/public/favicon.ico -------------------------------------------------------------------------------- /test/test-graphql-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/public/index.html -------------------------------------------------------------------------------- /test/test-graphql-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/public/manifest.json -------------------------------------------------------------------------------- /test/test-graphql-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/public/robots.txt -------------------------------------------------------------------------------- /test/test-graphql-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/src/App.js -------------------------------------------------------------------------------- /test/test-graphql-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/src/index.js -------------------------------------------------------------------------------- /test/test-graphql-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/test/test-graphql-app/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgriesser/cypress-graphql-mock/HEAD/yarn.lock --------------------------------------------------------------------------------