diff --git a/test/deploy/onboarding-tests/roles/configure/tasks/main.yml b/test/deploy/onboarding-tests/roles/configure/tasks/main.yml index 9045913c..04ebd0f1 100755 --- a/test/deploy/onboarding-tests/roles/configure/tasks/main.yml +++ b/test/deploy/onboarding-tests/roles/configure/tasks/main.yml @@ -4,15 +4,21 @@ - name: Set test account email from Synthetic secrets set_fact: - test_email: {{ test_email }} + "test_email": "{{ test_email }}" - name: Set test account password from Synthetic secrets set_fact: - test_password: {{ test_password }} + "test_password": "{{ test_password }}" - name: Create directory shell: "mkdir -p ~/tests && chmod 777 ~/tests" +- name: Install Git on Linux + become: yes + apt: + name: git + state: present + - name: Clone the Onboarding tests repository git: repo: https://github.com/newrelic/onboarding-e2e-tests.git @@ -42,6 +48,7 @@ chdir: ~/tests/onboarding-e2e-tests - name: Test playwright scripts - shell: "npx playwright test" + shell: "npx playwright test --config=playwright.config.validations.js" args: chdir: ~/tests/onboarding-e2e-tests + \ No newline at end of file