├── .circleci └── config.yml ├── .codeclimate.yml ├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ ├── deploy.yml │ ├── release-please.yml │ └── test-deploy.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.json ├── .release-please-manifest.json ├── LICENSE ├── README.md ├── commitlint.config.js ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2024-07-20-new-beginnings.md │ ├── 2024-07-21-introducing-core.md │ └── 2024-09-24-fetch-mock-12.md ├── docs │ ├── API │ │ ├── CallHistory.md │ │ ├── _category_.json │ │ ├── mocking-and-spying.md │ │ ├── more-routing-methods.md │ │ ├── resetting.md │ │ └── route │ │ │ ├── _category_.json │ │ │ ├── index.md │ │ │ ├── matcher.md │ │ │ ├── options.md │ │ │ └── response.md │ ├── Usage │ │ ├── _category_.json │ │ ├── configuration.md │ │ ├── installation.md │ │ ├── quickstart.md │ │ ├── requirements.md │ │ └── upgrade-guide.md │ ├── index.md │ ├── legacy-api │ │ ├── API │ │ │ ├── Inspection │ │ │ │ ├── _category_.json │ │ │ │ ├── done.md │ │ │ │ ├── flush.md │ │ │ │ └── inspecting-calls.md │ │ │ ├── Lifecycle │ │ │ │ ├── _category_.json │ │ │ │ ├── resetting.md │ │ │ │ └── sandbox.md │ │ │ ├── Mocking │ │ │ │ ├── Parameters │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── matcher.md │ │ │ │ │ ├── options.md │ │ │ │ │ └── response.md │ │ │ │ ├── _category_.json │ │ │ │ ├── add-matcher.md │ │ │ │ ├── catch.md │ │ │ │ ├── mock.md │ │ │ │ ├── shorthands.md │ │ │ │ └── spy.md │ │ │ └── _category_.json │ │ ├── Troubleshooting │ │ │ ├── _category_.json │ │ │ ├── cookies.md │ │ │ ├── custom-classes.md │ │ │ ├── debug-mode.md │ │ │ ├── global-non-global.md │ │ │ ├── importing.md │ │ │ └── troubleshooting.md │ │ ├── Usage │ │ │ ├── Usage.md │ │ │ ├── _category_.json │ │ │ ├── cheatsheet.md │ │ │ ├── configuration.md │ │ │ ├── installation.md │ │ │ ├── quickstart.md │ │ │ ├── requirements.md │ │ │ └── versions.md │ │ └── index.md │ └── wrappers │ │ ├── index.md │ │ ├── jest.md │ │ └── vitest.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── index.module.css └── static │ ├── .nojekyll │ └── img │ ├── docusaurus-social-card.jpg │ ├── docusaurus.png │ ├── favicon.ico │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg ├── eslint.config.js ├── import-compat ├── package.json ├── ts-cjs.ts ├── ts-esm.mts └── ts-esm.ts ├── jest.config.js ├── jsconfig.json ├── package.json ├── packages ├── codemods │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── fixtures │ │ │ │ ├── extra-vars.js │ │ │ │ ├── jsx.jsx │ │ │ │ ├── tsx.tsx │ │ │ │ └── typescript.ts │ │ │ ├── identifying-fetchmock-instances.test.js │ │ │ ├── integration.test.js │ │ │ ├── method-codemods.test.js │ │ │ ├── option-codemods.test.js │ │ │ └── package.json │ │ ├── codemods │ │ │ ├── methods.js │ │ │ └── options.js │ │ └── index.js │ └── try.js ├── fetch-mock │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── CallHistory.ts │ │ ├── FetchMock.ts │ │ ├── IsSubsetOf.ts │ │ ├── Matchers.ts │ │ ├── RequestUtils.ts │ │ ├── Route.ts │ │ ├── Router.ts │ │ ├── StatusTextMap.ts │ │ ├── TypeDescriptor.ts │ │ ├── __tests__ │ │ │ ├── CallHistory.test.js │ │ │ ├── FetchMock │ │ │ │ ├── flush.test.js │ │ │ │ ├── instance-management.test.js │ │ │ │ ├── mock-and-spy.test.js │ │ │ │ ├── response-construction.test.js │ │ │ │ ├── response-negotiation.test.js │ │ │ │ └── routing.test.js │ │ │ ├── Matchers │ │ │ │ ├── body.test.js │ │ │ │ ├── express.test.js │ │ │ │ ├── function.test.js │ │ │ │ ├── headers.test.js │ │ │ │ ├── method.test.js │ │ │ │ ├── query-string.test.js │ │ │ │ ├── route-config-object.test.js │ │ │ │ └── url.test.js │ │ │ ├── router-integration.test.js │ │ │ └── spec-compliance.test.js │ │ └── index.ts │ ├── tsconfig.cjs.json │ └── tsconfig.esm.json ├── jest │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── custom-jsdom-environment.ts │ │ │ ├── extensions.spec.ts │ │ │ ├── jsdom.spec.ts │ │ │ └── reset-methods.spec.js │ │ ├── index.ts │ │ ├── jest-extensions.ts │ │ └── types.ts │ ├── tsconfig.cjs.json │ └── tsconfig.esm.json └── vitest │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ ├── __tests__ │ │ ├── extensions.spec.ts │ │ └── reset-methods.spec.js │ ├── index.ts │ ├── types.ts │ └── vitest-extensions.ts │ ├── tsconfig.cjs.json │ └── tsconfig.esm.json ├── release-please-config.json ├── scripts ├── circleci-npm-publish.sh └── declare-dist-type.js ├── tea.yaml └── tsconfig.base.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.github/workflows/test-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | export default { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2024-07-20-new-beginnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/blog/2024-07-20-new-beginnings.md -------------------------------------------------------------------------------- /docs/blog/2024-07-21-introducing-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/blog/2024-07-21-introducing-core.md -------------------------------------------------------------------------------- /docs/blog/2024-09-24-fetch-mock-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/blog/2024-09-24-fetch-mock-12.md -------------------------------------------------------------------------------- /docs/docs/API/CallHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/CallHistory.md -------------------------------------------------------------------------------- /docs/docs/API/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/_category_.json -------------------------------------------------------------------------------- /docs/docs/API/mocking-and-spying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/mocking-and-spying.md -------------------------------------------------------------------------------- /docs/docs/API/more-routing-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/more-routing-methods.md -------------------------------------------------------------------------------- /docs/docs/API/resetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/resetting.md -------------------------------------------------------------------------------- /docs/docs/API/route/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/route/_category_.json -------------------------------------------------------------------------------- /docs/docs/API/route/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/route/index.md -------------------------------------------------------------------------------- /docs/docs/API/route/matcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/route/matcher.md -------------------------------------------------------------------------------- /docs/docs/API/route/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/route/options.md -------------------------------------------------------------------------------- /docs/docs/API/route/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/API/route/response.md -------------------------------------------------------------------------------- /docs/docs/Usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/Usage/_category_.json -------------------------------------------------------------------------------- /docs/docs/Usage/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/Usage/configuration.md -------------------------------------------------------------------------------- /docs/docs/Usage/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/Usage/installation.md -------------------------------------------------------------------------------- /docs/docs/Usage/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/Usage/quickstart.md -------------------------------------------------------------------------------- /docs/docs/Usage/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/Usage/requirements.md -------------------------------------------------------------------------------- /docs/docs/Usage/upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/Usage/upgrade-guide.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Inspection/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Inspection/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Inspection/done.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Inspection/done.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Inspection/flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Inspection/flush.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Inspection/inspecting-calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Inspection/inspecting-calls.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Lifecycle/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Lifecycle/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Lifecycle/resetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Lifecycle/resetting.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Lifecycle/sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Lifecycle/sandbox.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/Parameters/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/Parameters/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/Parameters/matcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/Parameters/matcher.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/Parameters/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/Parameters/options.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/Parameters/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/Parameters/response.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/add-matcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/add-matcher.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/catch.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/mock.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/shorthands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/shorthands.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/Mocking/spy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/Mocking/spy.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/API/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/API/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/cookies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/cookies.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/custom-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/custom-classes.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/debug-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/debug-mode.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/global-non-global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/global-non-global.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/importing.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Troubleshooting/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Troubleshooting/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/Usage.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/_category_.json -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/cheatsheet.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/configuration.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/installation.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/quickstart.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/requirements.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/Usage/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/Usage/versions.md -------------------------------------------------------------------------------- /docs/docs/legacy-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/legacy-api/index.md -------------------------------------------------------------------------------- /docs/docs/wrappers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/wrappers/index.md -------------------------------------------------------------------------------- /docs/docs/wrappers/jest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/wrappers/jest.md -------------------------------------------------------------------------------- /docs/docs/wrappers/vitest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docs/wrappers/vitest.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/eslint.config.js -------------------------------------------------------------------------------- /import-compat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/import-compat/package.json -------------------------------------------------------------------------------- /import-compat/ts-cjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/import-compat/ts-cjs.ts -------------------------------------------------------------------------------- /import-compat/ts-esm.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/import-compat/ts-esm.mts -------------------------------------------------------------------------------- /import-compat/ts-esm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/import-compat/ts-esm.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/package.json -------------------------------------------------------------------------------- /packages/codemods/.npmignore: -------------------------------------------------------------------------------- 1 | try.js 2 | -------------------------------------------------------------------------------- /packages/codemods/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/CHANGELOG.md -------------------------------------------------------------------------------- /packages/codemods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/README.md -------------------------------------------------------------------------------- /packages/codemods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/package.json -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/fixtures/extra-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/fixtures/extra-vars.js -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/fixtures/jsx.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/fixtures/jsx.jsx -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/fixtures/tsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/fixtures/tsx.tsx -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/fixtures/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/fixtures/typescript.ts -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/identifying-fetchmock-instances.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/identifying-fetchmock-instances.test.js -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/integration.test.js -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/method-codemods.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/method-codemods.test.js -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/option-codemods.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/__tests__/option-codemods.test.js -------------------------------------------------------------------------------- /packages/codemods/src/__tests__/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /packages/codemods/src/codemods/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/codemods/methods.js -------------------------------------------------------------------------------- /packages/codemods/src/codemods/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/codemods/options.js -------------------------------------------------------------------------------- /packages/codemods/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/src/index.js -------------------------------------------------------------------------------- /packages/codemods/try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/codemods/try.js -------------------------------------------------------------------------------- /packages/fetch-mock/.npmignore: -------------------------------------------------------------------------------- 1 | tsconfig.* 2 | scripts 3 | src 4 | -------------------------------------------------------------------------------- /packages/fetch-mock/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/CHANGELOG.md -------------------------------------------------------------------------------- /packages/fetch-mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/LICENSE -------------------------------------------------------------------------------- /packages/fetch-mock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/README.md -------------------------------------------------------------------------------- /packages/fetch-mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/package.json -------------------------------------------------------------------------------- /packages/fetch-mock/src/CallHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/CallHistory.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/FetchMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/FetchMock.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/IsSubsetOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/IsSubsetOf.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/Matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/Matchers.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/RequestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/RequestUtils.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/Route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/Route.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/Router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/Router.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/StatusTextMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/StatusTextMap.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/TypeDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/TypeDescriptor.ts -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/CallHistory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/CallHistory.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/FetchMock/flush.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/FetchMock/flush.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/FetchMock/instance-management.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/FetchMock/instance-management.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/FetchMock/mock-and-spy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/FetchMock/mock-and-spy.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/FetchMock/response-construction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/FetchMock/response-construction.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/FetchMock/response-negotiation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/FetchMock/response-negotiation.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/FetchMock/routing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/FetchMock/routing.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/body.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/body.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/express.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/express.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/function.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/function.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/headers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/headers.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/method.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/method.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/query-string.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/query-string.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/route-config-object.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/route-config-object.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/Matchers/url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/Matchers/url.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/router-integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/router-integration.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/__tests__/spec-compliance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/__tests__/spec-compliance.test.js -------------------------------------------------------------------------------- /packages/fetch-mock/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/src/index.ts -------------------------------------------------------------------------------- /packages/fetch-mock/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/tsconfig.cjs.json -------------------------------------------------------------------------------- /packages/fetch-mock/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/fetch-mock/tsconfig.esm.json -------------------------------------------------------------------------------- /packages/jest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/CHANGELOG.md -------------------------------------------------------------------------------- /packages/jest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/LICENSE -------------------------------------------------------------------------------- /packages/jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/README.md -------------------------------------------------------------------------------- /packages/jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/package.json -------------------------------------------------------------------------------- /packages/jest/src/__tests__/custom-jsdom-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/__tests__/custom-jsdom-environment.ts -------------------------------------------------------------------------------- /packages/jest/src/__tests__/extensions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/__tests__/extensions.spec.ts -------------------------------------------------------------------------------- /packages/jest/src/__tests__/jsdom.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/__tests__/jsdom.spec.ts -------------------------------------------------------------------------------- /packages/jest/src/__tests__/reset-methods.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/__tests__/reset-methods.spec.js -------------------------------------------------------------------------------- /packages/jest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/index.ts -------------------------------------------------------------------------------- /packages/jest/src/jest-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/jest-extensions.ts -------------------------------------------------------------------------------- /packages/jest/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/src/types.ts -------------------------------------------------------------------------------- /packages/jest/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/tsconfig.cjs.json -------------------------------------------------------------------------------- /packages/jest/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/jest/tsconfig.esm.json -------------------------------------------------------------------------------- /packages/vitest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vitest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/LICENSE -------------------------------------------------------------------------------- /packages/vitest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/README.md -------------------------------------------------------------------------------- /packages/vitest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/package.json -------------------------------------------------------------------------------- /packages/vitest/src/__tests__/extensions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/src/__tests__/extensions.spec.ts -------------------------------------------------------------------------------- /packages/vitest/src/__tests__/reset-methods.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/src/__tests__/reset-methods.spec.js -------------------------------------------------------------------------------- /packages/vitest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/src/index.ts -------------------------------------------------------------------------------- /packages/vitest/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/src/types.ts -------------------------------------------------------------------------------- /packages/vitest/src/vitest-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/src/vitest-extensions.ts -------------------------------------------------------------------------------- /packages/vitest/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/tsconfig.cjs.json -------------------------------------------------------------------------------- /packages/vitest/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/packages/vitest/tsconfig.esm.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/release-please-config.json -------------------------------------------------------------------------------- /scripts/circleci-npm-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/scripts/circleci-npm-publish.sh -------------------------------------------------------------------------------- /scripts/declare-dist-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/scripts/declare-dist-type.js -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/tea.yaml -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wheresrhys/fetch-mock/HEAD/tsconfig.base.json --------------------------------------------------------------------------------