From d4ed951ad1e3cf53e7bf576d044c0821c751575e Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 3 Feb 2017 09:14:55 -0500 Subject: [PATCH] Add snooze calls to improve test stability. --- .../integration-tests/src/VuFindTest/Mink/FavoritesTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php index 571b656b4e5..28b29160be6 100644 --- a/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php +++ b/module/VuFind/tests/integration-tests/src/VuFindTest/Mink/FavoritesTest.php @@ -325,6 +325,7 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase $page = $this->gotoSearch(); $this->findCss($page, '.save-record')->click(); + $this->snooze(); // Login // - empty $this->submitLoginForm($page); @@ -338,21 +339,26 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase // Make Two Lists // - One for the next test $this->findCss($page, '#make-list')->click(); + $this->snooze(); $this->findCss($page, '#list_title')->setValue('Future List'); $this->findCss($page, '.modal-body .btn.btn-primary')->click(); + $this->snooze(); $this->assertEquals( $this->findCss($page, '#save_list option[selected]')->getHtml(), 'Future List' ); // - One for now $this->findCss($page, '#make-list')->click(); + $this->snooze(); $this->findCss($page, '#list_title')->setValue('Login Test List'); $this->findCss($page, '.modal-body .btn.btn-primary')->click(); + $this->snooze(); $this->assertEquals( $this->findCss($page, '#save_list option[selected]')->getHtml(), 'Login Test List' ); $this->findCss($page, '.modal-body .btn.btn-primary')->click(); + $this->snooze(); $this->findCss($page, '.alert.alert-success'); } -- GitLab