mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
f84bf8e883
Closes #1924
35 lines
773 B
PHP
35 lines
773 B
PHP
<?php namespace Tests\Entity;
|
|
|
|
use BookStack\Entities\Page;
|
|
use Tests\BrowserKitTest;
|
|
|
|
class CommentSettingTest extends BrowserKitTest
|
|
{
|
|
protected $page;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->page = Page::first();
|
|
}
|
|
|
|
public function test_comment_disable()
|
|
{
|
|
$this->asAdmin();
|
|
|
|
$this->setSettings(['app-disable-comments' => 'true']);
|
|
|
|
$this->asAdmin()->visit($this->page->getUrl())
|
|
->pageNotHasElement('.comments-list');
|
|
}
|
|
|
|
public function test_comment_enable()
|
|
{
|
|
$this->asAdmin();
|
|
|
|
$this->setSettings(['app-disable-comments' => 'false']);
|
|
|
|
$this->asAdmin()->visit($this->page->getUrl())
|
|
->pageHasElement('.comments-list');
|
|
}
|
|
} |