├── .github └── workflows │ ├── badges.yml │ └── ci.yml ├── .gitignore ├── .prettierrc.json ├── .vscode └── settings.json ├── README.md ├── cypress.config.ts ├── cypress ├── README.md ├── e2e │ ├── add.cy.ts │ ├── filters.cy.ts │ ├── hides-credentials.cy.ts │ ├── post.cy.ts │ ├── put.cy.ts │ ├── server-logs.cy.ts │ ├── shows-credentials.cy.ts │ ├── spec.cy.ts │ └── style.cy.ts ├── fixtures │ └── example.json ├── plugins │ └── index.ts ├── support │ └── e2e.ts └── tsconfig.json ├── images └── cy-api.jpg ├── package.json ├── renovate.json ├── server-public └── test.html ├── server └── index.js ├── src ├── index.ts ├── support.ts └── types.ts └── tsconfig.json /.github/workflows/badges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/.github/workflows/badges.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | cypress/videos/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "workbench.colorTheme": "Snazzy Operator" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/e2e/add.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/add.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/filters.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/filters.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/hides-credentials.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/hides-credentials.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/post.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/post.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/put.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/put.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/server-logs.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/server-logs.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/shows-credentials.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/shows-credentials.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/spec.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/style.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/e2e/style.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/plugins/index.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /images/cy-api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/images/cy-api.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/renovate.json -------------------------------------------------------------------------------- /server-public/test.html: -------------------------------------------------------------------------------- 1 | MY PAGE -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/server/index.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/src/support.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/cy-api/HEAD/tsconfig.json --------------------------------------------------------------------------------