Skip to content

Commit

Permalink
Re-enable disabled tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed Feb 3, 2025
1 parent 18b45b2 commit c0307a5
Showing 1 changed file with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ protected function makeAccount(Element $page, string $username): void
*
* @return void
*/
public function disabledTestAddComment(): void
public function testAddComment(): void
{
// Go to a record view
$page = $this->gotoRecord();
Expand Down Expand Up @@ -148,7 +148,7 @@ public function disabledTestAddComment(): void
*
* @depends testAddComment
*/
public function disabledTestAddCommentWithCaptcha(): void
public function testAddCommentWithCaptcha(): void
{
// Set up configs:
$this->changeConfigs(
Expand Down Expand Up @@ -240,7 +240,7 @@ protected function addTagsToRecord(
*
* @depends testAddComment
*/
public function disabledTestAddTag(): void
public function testAddTag(): void
{
// Go to a record view
$page = $this->gotoRecord();
Expand Down Expand Up @@ -314,7 +314,7 @@ public function disabledTestAddTag(): void
*
* @depends testAddTag
*/
public function disabledTestTagSearch(): void
public function testTagSearch(): void
{
// First try an undefined tag:
$page = $this->performSearch('tag-not-in-system', 'tag');
Expand Down Expand Up @@ -358,7 +358,7 @@ public static function getTagSearchSortData(): array
*
* @depends testTagSearch
*/
public function disabledTestTagSearchSort(
public function testTagSearchSort(
int $index,
string $expectedSort,
string $expectedFirst,
Expand All @@ -378,7 +378,7 @@ public function disabledTestTagSearchSort(
*
* @depends testTagSearch
*/
public function disabledTestTagAutocomplete(): void
public function testTagAutocomplete(): void
{
$session = $this->getMinkSession();
$page = $this->getSearchHomePage($session);
Expand Down Expand Up @@ -407,7 +407,7 @@ public function disabledTestTagAutocomplete(): void
*
* @depends testAddTag
*/
public function disabledTestAddSensitiveTag(): void
public function testAddSensitiveTag(): void
{
// Set up configs:
$this->changeConfigs(
Expand Down Expand Up @@ -464,7 +464,7 @@ protected function goToTagAdmin(string $subPage = ''): Element
* @depends testTagSearch
* @depends testAddSensitiveTag
*/
public function disabledTestTagAdminHome(): void
public function testTagAdminHome(): void
{
// Go to admin page:
$page = $this->goToTagAdmin();
Expand All @@ -482,7 +482,7 @@ public function disabledTestTagAdminHome(): void
* @depends testTagSearch
* @depends testAddSensitiveTag
*/
public function disabledTestTagAdminList(): void
public function testTagAdminList(): void
{
$page = $this->goToTagAdmin('/List');

Expand Down Expand Up @@ -536,7 +536,7 @@ public function disabledTestTagAdminList(): void
*
* @depends testTagAdminList
*/
public function disabledTestTagAdminManage(): void
public function testTagAdminManage(): void
{
$page = $this->goToTagAdmin('/Manage');

Expand Down Expand Up @@ -619,7 +619,7 @@ public function disabledTestTagAdminManage(): void
*
* @return void
*/
public function disabledTestEmail(): void
public function testEmail(): void
{
// Set up configs:
$this->changeConfigs(
Expand Down Expand Up @@ -740,7 +740,7 @@ public function testSMS(): void
*
* @return void
*/
public function disabledTestPrint(): void
public function testPrint(): void
{
// Go to a record view (manually search so we can access $session)
$page = $this->performSearch('Dewey');
Expand All @@ -764,7 +764,7 @@ function () {
*
* @return void
*/
public function disabledTestRatingDisabled(): void
public function testRatingDisabled(): void
{
// Go to a record view
$page = $this->gotoRecord();
Expand Down Expand Up @@ -794,7 +794,7 @@ public static function getTestRatingData(): array
*
* @return void
*/
public function disabledTestRating($allowRemove): void
public function testRating($allowRemove): void
{
// Set up configs:
$this->changeConfigs(
Expand Down Expand Up @@ -946,7 +946,7 @@ function () use ($page, $checked) {
*
* @return void
*/
public function disabledTestRefWorksExportButton(): void
public function testRefWorksExportButton(): void
{
// Go to a record view
$page = $this->gotoRecord();
Expand Down

0 comments on commit c0307a5

Please sign in to comment.