Skip to content
Snippets Groups Projects
Commit bced610a authored by shota niioka's avatar shota niioka Committed by Yas Naoi
Browse files

Issue #3292791 by shota niioka, yas, kumikoono: Add a BDD test suite for K8s Jobs (Read)

parent b9c65848
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,19 @@ Feature: Create delete a job for K8s as "Authenticated User"
And I should see neither error nor warning messages
And I should see "{{ job_name }}" in the "{{ namespace }}" row
@api @javascript
Scenario: Read the Job
Given I am logged in as user "{{ user_name }}"
When I visit "/clouds/k8s/{{ cloud_context }}/job"
And I click "Refresh"
And I wait {{ wait }} milliseconds
And I should see the link "{{ job_name }}"
And I click "{{ job_name }}"
Then the url should match "/clouds/k8s/{{ cloud_context }}/job/"
And I should see "{{ job_name }}"
And I should see "{{ namespace }}"
And I should see neither error nor warning messages
@api @javascript
Scenario: Delete the job
Given I am logged in as user "{{ user_name }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment