AzuraCast/tests/Functional/Station_RemoteRelaysCest.php

21 lines
420 B
PHP

<?php
namespace Functional;
class Station_RemoteRelaysCest extends CestAbstract
{
/**
* @before setupComplete
* @before login
*/
public function editRemoteRelays(\FunctionalTester $I): void
{
$testStation = $this->getTestStation();
$station_id = $testStation->getId();
$I->amOnPage('/station/' . $station_id . '/remotes');
$I->see('Remote Relays');
}
}