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

Minor improvements.

parent 0489208e
No related merge requests found
......@@ -51,6 +51,19 @@ class IlsActionsTest extends \VuFindTest\Unit\MinkTestCase
return static::failIfUsersExist();
}
/**
* Standard setup method.
*
* @return void
*/
public function setUp()
{
// Give up if we're not running in CI:
if (!$this->continuousIntegrationRunning()) {
return $this->markTestSkipped('Continuous integration not running.');
}
}
/**
* Get config.ini override settings for testing ILS functions.
*
......@@ -159,6 +172,7 @@ class IlsActionsTest extends \VuFindTest\Unit\MinkTestCase
$element->click();
$this->snooze();
$this->findCss($page, '.createAccountLink')->click();
$this->snooze();
$this->fillInAccountForm($page);
$this->findCss($page, 'input.btn.btn-primary')->click();
$this->snooze();
......
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