1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Updated tests to use ssddanbrown/asserthtml package

Closes #3519
This commit is contained in:
Dan Brown
2022-07-23 15:10:18 +01:00
parent cf73e5f2c6
commit 72c8b138e1
48 changed files with 869 additions and 1014 deletions

View File

@ -20,8 +20,8 @@ class CommentSettingTest extends TestCase
$this->setSettings(['app-disable-comments' => 'true']);
$this->asAdmin();
$this->asAdmin()->get($this->page->getUrl())
->assertElementNotExists('.comments-list');
$resp = $this->asAdmin()->get($this->page->getUrl());
$this->withHtml($resp)->assertElementNotExists('.comments-list');
}
public function test_comment_enable()
@ -29,7 +29,7 @@ class CommentSettingTest extends TestCase
$this->setSettings(['app-disable-comments' => 'false']);
$this->asAdmin();
$this->asAdmin()->get($this->page->getUrl())
->assertElementExists('.comments-list');
$resp = $this->asAdmin()->get($this->page->getUrl());
$this->withHtml($resp)->assertElementExists('.comments-list');
}
}