* Given ``` markdownToBlocks(` - asdf - asdf2`) ```` * Actual ``` Array [ Object { "text": Object { "text": "• asdf", "type": "mrkdwn", }, "type": "section", }, ] ``` * Expected ``` Array [ Object { "text": Object { "text": "• asdf • asdf2", "type": "mrkdwn", }, "type": "section", }, ] ```
Activity