You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
@tool @tool_task
|
|
Feature: Clear scheduled task fail delay
|
|
In order to stop failures from delaying a scheduled task run
|
|
As an admin
|
|
I need to be able to clear the fail delay on a task
|
|
|
|
Background:
|
|
Given the scheduled task "\core\task\send_new_user_passwords_task" has a fail delay of "60" seconds
|
|
And I log in as "admin"
|
|
And I navigate to "Server > Tasks > Scheduled tasks" in site administration
|
|
|
|
Scenario: Clear fail delay
|
|
When I click on "Clear" "text" in the "Send new user passwords" "table_row"
|
|
And I should see "Are you sure you want to clear the fail delay"
|
|
And I press "Clear"
|
|
|
|
Then I should not see "60" in the "Send new user passwords" "table_row"
|
|
And I should not see "Clear" in the "Send new user passwords" "table_row"
|
|
|
|
Scenario: Cancel clearing the fail delay
|
|
When I click on "Clear" "text" in the "Send new user passwords" "table_row"
|
|
And I press "Cancel"
|
|
|
|
Then I should see "60" in the "Send new user passwords" "table_row"
|
|
And I should see "Clear" in the "Send new user passwords" "table_row"
|
|
|