From 19b6a0c2c1ad5400b88b93b6b0381de4c10401c2 Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> Date: Thu, 13 Apr 2023 17:57:23 +0200 Subject: [PATCH] Update tests --- test/integration/users-test-cases.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/integration/users-test-cases.yaml b/test/integration/users-test-cases.yaml index 4163ed874..06524f2e8 100644 --- a/test/integration/users-test-cases.yaml +++ b/test/integration/users-test-cases.yaml @@ -109,21 +109,21 @@ tests: - "Open the following URL in a browser: https://manage.auth0.com/dashboard/" 016 - users import: - command: auth0 users import -c "Username-Password-Authentication" --users "[]" -r=false --no-input + command: auth0 users import -c "Username-Password-Authentication" --users "[]" --email-results=false --no-input exit-code: 0 - stdout: - contains: - - "[]" stderr: contains: - - "starting user import job..." + - "started user import job" + - "Job with ID" + - "successfully started" + - "to get the status of the job" 017 - users import with piped data: - command: echo "[]" | auth0 users import -c "Username-Password-Authentication" -r=false --no-input + command: echo "[]" | auth0 users import -c "Username-Password-Authentication" --email-results=false --no-input exit-code: 0 - stdout: - contains: - - "[]" stderr: contains: - - "starting user import job..." + - "started user import job" + - "Job with ID" + - "successfully started" + - "to get the status of the job"