4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-17 06:27:07 +00:00
AzuraCast/tests/functional/Station_MountPointsCest.php
2021-06-12 03:40:01 -05:00

19 lines
392 B
PHP

<?php
class Station_MountPointsCest extends CestAbstract
{
/**
* @before setupComplete
* @before login
*/
public function editMountPoints(FunctionalTester $I): void
{
$testStation = $this->getTestStation();
$station_id = $testStation->getId();
$I->amOnPage('/station/' . $station_id . '/mounts');
$I->see('Mount Points');
}
}