├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── network.api.snapshot.json ├── global.d.ts ├── integration │ └── network.spec.ts ├── plugins │ └── index.ts ├── support │ ├── commands.ts │ ├── index.ts │ ├── test-setup.ts │ └── utils │ │ ├── auto-stub.ts │ │ ├── running-config.ts │ │ └── test-info.ts └── tsconfig.json ├── package.json ├── public └── index.html ├── src ├── App.js ├── GraphQL.js ├── XhrAndFetch.js └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/network.api.snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/fixtures/network.api.snapshot.json -------------------------------------------------------------------------------- /cypress/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/global.d.ts -------------------------------------------------------------------------------- /cypress/integration/network.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/integration/network.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/plugins/index.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/support/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/support/test-setup.ts -------------------------------------------------------------------------------- /cypress/support/utils/auto-stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/support/utils/auto-stub.ts -------------------------------------------------------------------------------- /cypress/support/utils/running-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/support/utils/running-config.ts -------------------------------------------------------------------------------- /cypress/support/utils/test-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/support/utils/test-info.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/GraphQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/src/GraphQL.js -------------------------------------------------------------------------------- /src/XhrAndFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/src/XhrAndFetch.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PinkyJie/cypress-auto-stub-example/HEAD/yarn.lock --------------------------------------------------------------------------------