├── .github └── workflows │ └── postman-tests.yml ├── .gitignore ├── LICENSE ├── Postman ├── collection01.json └── collection02.json ├── README.md ├── issue_template.md ├── pull_request_template.md └── scripts └── create_and_assign_api_resources.sh /.github/workflows/postman-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/.github/workflows/postman-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/LICENSE -------------------------------------------------------------------------------- /Postman/collection01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/Postman/collection01.json -------------------------------------------------------------------------------- /Postman/collection02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/Postman/collection02.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/README.md -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/issue_template.md -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /scripts/create_and_assign_api_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2-enterprise/identity-e2e-test/HEAD/scripts/create_and_assign_api_resources.sh --------------------------------------------------------------------------------