diff --git a/test/functions/MarkdownToHTML.cfc b/test/functions/MarkdownToHTML.cfc index 5761f72358..5ce6ddef81 100644 --- a/test/functions/MarkdownToHTML.cfc +++ b/test/functions/MarkdownToHTML.cfc @@ -99,6 +99,18 @@ This is TXTMARK if( fileExists( file ) ) fileDelete( file ); } }); + + it( title = "Checking markdownToHTML supports tables", skip=true, body=function( currentSpec ) { + var md = [ + "| First Header | Second Header |", + "| ------------- | ------------- |", + "| Content Cell | Content Cell |" + ].toList( chr( 10 ) ); + var html = markdownToHtml( md ); + expect( html ).toInclude( "" ); + expect( html ).toInclude( "
" ); + }); + }); }