diff --git a/test/integration/apps-test-cases.yaml b/test/integration/apps-test-cases.yaml index 30b0f3aeb..1d6d5cc61 100644 --- a/test/integration/apps-test-cases.yaml +++ b/test/integration/apps-test-cases.yaml @@ -102,25 +102,25 @@ tests: callbacks: "[https://example.com https://google.com]" 014 - it successfully creates a regular app with grants: - command: auth0 apps create --name integration-test-app-regapp5 --type regular --description RegApp4 --grants credentials,password + command: auth0 apps create --name integration-test-app-regapp5 --type regular --description RegApp4 --grants client-credentials,authorization-code,password exit-code: 0 stdout: contains: - - GRANTS client_credentials, password + - GRANTS client_credentials, authorization_code, password 015 - it successfully creates a spa app with grants and outputs in json: - command: auth0 apps create --name integration-test-app-spaapp3 --type spa --description SpaApp3 --grants refresh-token --json + command: auth0 apps create --name integration-test-app-spaapp3 --type spa --description SpaApp3 --grants implicit,refresh-token --json exit-code: 0 stdout: json: - grant_types: "[refresh_token]" + grant_types: "[implicit refresh_token]" 016 - it successfully creates a native app with grants and outputs in json: - command: auth0 apps create --name integration-test-app-nativeapp2 --type native --description NativeApp2 --grants refresh-token,code --json + command: auth0 apps create --name integration-test-app-nativeapp2 --type native --description NativeApp2 --grants code,mfa-oob,mfa-otp,mfa-recovery-code,password-realm --json exit-code: 0 stdout: json: - grant_types: "[refresh_token authorization_code]" + grant_types: "[authorization_code http://auth0.com/oauth/grant-type/mfa-oob http://auth0.com/oauth/grant-type/mfa-otp http://auth0.com/oauth/grant-type/mfa-recovery-code http://auth0.com/oauth/grant-type/password-realm]" 017 - it fails to create a m2m app with device code grant: command: auth0 apps create --name integration-test-app-m2mapp4 --type m2m --description M2mApp4 --grants credentials,device-code