AzuraCast/tests/Functional/Admin_IndexCest.php

20 lines
387 B
PHP
Raw Normal View History

<?php
2020-03-01 16:40:15 +00:00
namespace Functional;
class Admin_IndexCest extends CestAbstract
{
/**
* @before setupComplete
* @before login
*/
public function seeAdminHomepage(\FunctionalTester $I): void
{
$I->wantTo('See the administration homepage.');
$I->amOnPage('/admin');
$I->seeResponseCodeIs(200);
$I->seeInTitle('Administration');
}
}