├── .all-contributorsrc ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── users │ │ └── user.json ├── integration │ ├── fake-login.spec.ts │ └── login.spec.ts ├── plugins │ └── index.js ├── support │ ├── commands.ts │ └── index.js └── tsconfig.json ├── index.d.ts ├── package.json ├── src ├── index.ts ├── kc-fake-login.ts ├── kc-login.ts ├── kc-logout.ts └── utils.ts ├── testing ├── docker-compose.yml ├── example-realm.json └── webapp │ ├── index.html │ └── keycloak.json └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/users/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress/fixtures/users/user.json -------------------------------------------------------------------------------- /cypress/integration/fake-login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress/integration/fake-login.spec.ts -------------------------------------------------------------------------------- /cypress/integration/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress/integration/login.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- 1 | import "./commands"; 2 | -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/kc-fake-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/src/kc-fake-login.ts -------------------------------------------------------------------------------- /src/kc-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/src/kc-login.ts -------------------------------------------------------------------------------- /src/kc-logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/src/kc-logout.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/src/utils.ts -------------------------------------------------------------------------------- /testing/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/testing/docker-compose.yml -------------------------------------------------------------------------------- /testing/example-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/testing/example-realm.json -------------------------------------------------------------------------------- /testing/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/testing/webapp/index.html -------------------------------------------------------------------------------- /testing/webapp/keycloak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/testing/webapp/keycloak.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fredx87/cypress-keycloak-commands/HEAD/tsconfig.json --------------------------------------------------------------------------------