mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
29 lines
731 B
PHP
29 lines
731 B
PHP
<?php
|
|
|
|
namespace Tests\Entity;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class CommentSettingTest extends TestCase
|
|
{
|
|
public function test_comment_disable()
|
|
{
|
|
$page = $this->entities->page();
|
|
$this->setSettings(['app-disable-comments' => 'true']);
|
|
$this->asAdmin();
|
|
|
|
$resp = $this->asAdmin()->get($page->getUrl());
|
|
$this->withHtml($resp)->assertElementNotExists('.comments-list');
|
|
}
|
|
|
|
public function test_comment_enable()
|
|
{
|
|
$page = $this->entities->page();
|
|
$this->setSettings(['app-disable-comments' => 'false']);
|
|
$this->asAdmin();
|
|
|
|
$resp = $this->asAdmin()->get($page->getUrl());
|
|
$this->withHtml($resp)->assertElementExists('.comments-list');
|
|
}
|
|
}
|