3 class SortTest extends TestCase
7 public function setUp()
10 $this->book = \BookStack\Book::first();
13 public function test_drafts_do_not_show_up()
16 $pageRepo = app('\BookStack\Repos\PageRepo');
17 $draft = $pageRepo->getDraftPage($this->book);
19 $this->visit($this->book->getUrl())
21 ->visit($this->book->getUrl() . '/sort')
22 ->dontSee($draft->name);