mirror of
https://github.com/koel/koel
synced 2024-12-12 05:32:28 +00:00
24 lines
569 B
PHP
24 lines
569 B
PHP
<?php
|
|
|
|
namespace E2E;
|
|
|
|
class PlaylistScreenTest extends TestCase
|
|
{
|
|
use SongListActions;
|
|
|
|
public function testPlaylistScreen()
|
|
{
|
|
$this->loginAndGoTo('songs')
|
|
->selectRange()
|
|
->createPlaylist('Bar');
|
|
|
|
$this->waitUntilTextSeenIn('Bar', '#playlists > ul');
|
|
|
|
$this->click('#sidebar .playlist:nth-last-child(1)');
|
|
$this->waitUntilSeen('#playlistWrapper');
|
|
|
|
$this->click('#playlistWrapper .btn-delete-playlist');
|
|
// expect a confirmation
|
|
$this->waitUntilSeen('.sweet-alert');
|
|
}
|
|
}
|