AzuraCast/tests/Functional/Station_PlaylistsCest.php

23 lines
463 B
PHP

<?php
namespace Functional;
class Station_PlaylistsCest extends CestAbstract
{
/**
* @before setupComplete
* @before login
*/
public function editPlaylists(\FunctionalTester $I): void
{
$I->wantTo('Create a station playlist.');
$testStation = $this->getTestStation();
$station_id = $testStation->getId();
$I->amOnPage('/station/' . $station_id . '/playlists');
$I->see('Playlists');
}
}