AzuraCast/tests/Functional/Admin_DebugCest.php

22 lines
396 B
PHP

<?php
declare(strict_types=1);
namespace Functional;
use FunctionalTester;
class Admin_DebugCest extends CestAbstract
{
/**
* @before setupComplete
* @before login
*/
public function syncTasks(FunctionalTester $I)
{
$I->wantTo('Test All Synchronized Tasks');
$I->amOnPage('/admin/debug/sync/all');
$I->seeResponseCodeIsSuccessful();
}
}