Skip to content
Snippets Groups Projects
Commit 1d466c8c authored by Adam G-H's avatar Adam G-H
Browse files

debug

parent 91cc91cf
No related branches found
No related tags found
No related merge requests found
...@@ -195,7 +195,13 @@ class CoreUpdateTest extends UpdateTestBase { ...@@ -195,7 +195,13 @@ class CoreUpdateTest extends UpdateTestBase {
$assert_session->pageTextNotContains('There is a security update available for your version of Drupal.'); $assert_session->pageTextNotContains('There is a security update available for your version of Drupal.');
$page->pressButton('Update'); $page->pressButton('Update');
$this->waitForBatchJob(); $this->waitForBatchJob();
$assert_session->pageTextContains('Ready to update'); try {
$assert_session->pageTextContains('Ready to update');
}
catch (\Throwable $e) {
print_r($page->getContent());
throw $e;
}
$page->pressButton('Continue'); $page->pressButton('Continue');
$this->waitForBatchJob(); $this->waitForBatchJob();
$assert_session->pageTextContains('Update complete!'); $assert_session->pageTextContains('Update complete!');
......
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