Skip to content
Snippets Groups Projects
Commit a4d44b71 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed broken test.

parent 9c32b81e
No related merge requests found
......@@ -79,6 +79,12 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
return $page;
}
protected function stripHash($url)
{
$parts = explode('#', $url);
return $parts[0];
}
public function testAddRecordToFavoritesNewAccount()
{
// Change the theme:
......@@ -122,10 +128,10 @@ class FavoritesTest extends \VuFindTest\Unit\MinkTestCase
$this->assertNotNull($page->find('css', '.alert.alert-info')); // .success?
$page->find('css', '.modal-body .btn.btn-default')->click();
// Check list page
$recordURL = $session->getCurrentUrl();
$recordURL = $this->stripHash($session->getCurrentUrl());
$page->find('css', '#savedLists a')->click();
$page->find('css', '.resultItemLine1 a')->click();
$this->assertEquals($session->getCurrentUrl(), $recordURL);
$this->assertEquals($recordURL, $this->stripHash($session->getCurrentUrl()));
$page->find('css', '.logoutOptions a[title="Log Out"]')->click();
$session->stop();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment