Skip to content

Commit

Permalink
#27: Fixed test of generating markdown document
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinCelej committed Dec 28, 2023
1 parent e0653c5 commit 6c79451
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

namespace Synergy.Documentation.Tests.Markup
{
[UsesVerify]
public class MarkdownTests
{
[Fact]
public void CreateMarkdownDocument()
public async Task CreateMarkdownDocument()
{
var markdown = new Markdown.Document();
markdown
Expand All @@ -20,7 +21,7 @@ public void CreateMarkdownDocument()
// TODO: Marcin Celej [from: Marcin Celej on: 23-12-2023]: Add image test here
// TODO: Marcin Celej [from: Marcin Celej on: 23-12-2023]: Add link test here

Verifier.Verify(markdown.ToString(), "md");
await Verifier.Verify(markdown.ToString(), "md");

Markdown.Table SampleTable()
{
Expand Down

0 comments on commit 6c79451

Please sign in to comment.