AzuraCast/tests/Functional/Admin_DebugCest.php

18 lines
348 B
PHP
Raw Normal View History

2020-03-01 17:40:15 +01:00
<?php
namespace Functional;
class Admin_DebugCest extends CestAbstract
2020-03-01 17:40:15 +01:00
{
/**
* @before setupComplete
* @before login
*/
public function syncTasks(\FunctionalTester $I)
2020-03-01 17:40:15 +01:00
{
$I->wantTo('Test All Synchronized Tasks');
$I->amOnPage('/admin/debug/sync/all');
$I->seeResponseCodeIsSuccessful();
2020-03-01 17:40:15 +01:00
}
}