+ public function test_page_creation_with_markdown_content()
+ {
+ $this->setSettings(['app-editor' => 'markdown']);
+ $book = Book::query()->first();
+
+ $this->asEditor()->get($book->getUrl('/create-page'));
+ $draft = Page::query()->where('book_id', '=', $book->id)
+ ->where('draft', '=', true)->first();
+
+ $details = [
+ 'markdown' => '# a title',
+ 'html' => '<h1>a title</h1>',
+ 'name' => 'my page',
+ ];
+ $resp = $this->post($book->getUrl("/draft/{$draft->id}"), $details);
+ $resp->assertRedirect();
+
+ $this->assertDatabaseHas('pages', [
+ 'markdown' => $details['markdown'],
+ 'name' => $details['name'],
+ 'id' => $draft->id,
+ 'draft' => false
+ ]);
+
+ $draft->refresh();
+ $resp = $this->get($draft->getUrl("/edit"));
+ $resp->assertSee("# a title");
+ }
+