Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add config line to run tests #1029

Merged
merged 4 commits into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/deploy/onboarding-tests/roles/configure/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

- 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"
Expand Down Expand Up @@ -42,6 +42,6 @@
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
Loading