mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 14:54:01 +01:00
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Browser\Settings;
|
|
|
|
use Roundcube\Tests\Browser\Components\App;
|
|
use Roundcube\Tests\Browser\TestCase;
|
|
|
|
class SettingsTest extends TestCase
|
|
{
|
|
public function testSettings()
|
|
{
|
|
$this->browse(static function ($browser) {
|
|
$browser->go('settings');
|
|
|
|
// task should be set to 'settings'
|
|
$browser->with(new App(), static function ($browser) {
|
|
$browser->assertEnv('task', 'settings');
|
|
});
|
|
|
|
$browser->assertSeeIn('#layout-sidebar .header', 'Settings');
|
|
|
|
// Sidebar menu
|
|
$browser->with('#settings-menu', static function ($browser) {
|
|
$browser->assertSeeIn('li.preferences', 'Preferences');
|
|
$browser->assertSeeIn('li.folders', 'Folders');
|
|
$browser->assertSeeIn('li.identities', 'Identities');
|
|
$browser->assertSeeIn('li.responses', 'Responses');
|
|
});
|
|
|
|
// Task menu
|
|
$browser->assertTaskMenu('settings');
|
|
});
|
|
}
|
|
}
|