koel/tests/e2e/PlaylistScreenTest.php

24 lines
531 B
PHP
Raw Normal View History

2016-11-18 07:56:18 +00:00
<?php
namespace E2E;
class PlaylistScreenTest extends TestCase
{
use SongListActions;
public function testPlaylistScreen()
{
2016-11-23 13:22:47 +00:00
$this->loginAndGoTo('songs')
2016-11-18 07:56:18 +00:00
->selectRange()
2016-11-24 03:56:00 +00:00
->createPlaylist('Bar')
->seeText('Bar', '#playlists > ul');
2016-11-18 07:56:18 +00:00
$this->click('#sidebar .playlist:nth-last-child(1)');
2016-11-23 15:36:12 +00:00
$this->see('#playlistWrapper');
2016-11-18 07:56:18 +00:00
$this->click('#playlistWrapper .btn-delete-playlist');
// expect a confirmation
2016-12-02 10:33:28 +00:00
$this->see('.alertify');
2016-11-18 07:56:18 +00:00
}
}