diff --git a/test/integration/apps-test-cases.yaml b/test/integration/apps-test-cases.yaml index d0bf8d9f0..616d9a943 100644 --- a/test/integration/apps-test-cases.yaml +++ b/test/integration/apps-test-cases.yaml @@ -160,28 +160,34 @@ tests: exit-code: 0 stdout: contains: - - METADATA key=value + - METADATA + - key=value 022 - it successfully creates a native app with a multiple metadata sets, multiple flags: command: auth0 apps create --name integration-test-app-nativeapp22 --type native --description NativeApp22 --metadata "key=value" --metadata "foo=bar" exit-code: 0 stdout: contains: - - METADATA key=value, foo=bar + - METADATA + - key=value + - foo=bar 023 - it successfully creates a native app with a multiple metadata sets, single flag: command: auth0 apps create --name integration-test-app-nativeapp23 --type native --description NativeApp23 --metadata "key=value,foo=bar" exit-code: 0 stdout: contains: - - METADATA key=value, foo=bar + - METADATA + - key=value + - foo=bar 024 - given a test app, it successfully updates the app's details with a metadata set: command: auth0 apps update $(./test/integration/scripts/get-app-id.sh) --metadata "baz=buzz" exit-code: 0 stdout: contains: - - METADATA baz=buzz + - METADATA + - baz=buzz 025 - given a test app, it successfully gets the app's details and outputs in json: command: auth0 apps show $(./test/integration/scripts/get-app-id.sh) --json diff --git a/test/integration/fixtures/update-rule.json b/test/integration/fixtures/update-rule.json index 347e717d7..e69de29bb 100644 --- a/test/integration/fixtures/update-rule.json +++ b/test/integration/fixtures/update-rule.json @@ -1,7 +0,0 @@ -{ - "id": "rul_xWavq6OFKbMma9DH", - "name": "integration-test-rule-betterName", - "script": "function(user, context, cb) {\n cb(null, user, context);\n}\n", - "order": 3, - "enabled": false -}