From 0cd033361f44f2c8d0ae7a6ffc01870cf2b8131d Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Wed, 13 Mar 2019 10:40:51 -0500 Subject: [PATCH] remove redundant comments --- test/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/index.js b/test/index.js index 73529468f8..5027ee5b90 100644 --- a/test/index.js +++ b/test/index.js @@ -245,7 +245,6 @@ function runBench(options) { } bench('marked (pedantic)', files, marked); - // commonmark try { bench('commonmark', files, (() => { const commonmark = require('commonmark'); @@ -259,7 +258,6 @@ function runBench(options) { console.log('Could not bench commonmark. (Error: %s)', e.message); } - // markdown-it try { bench('markdown-it', files, (() => { const MarkdownIt = require('markdown-it'); @@ -270,7 +268,6 @@ function runBench(options) { console.log('Could not bench markdown-it. (Error: %s)', e.message); } - // markdown.js try { bench('markdown.js', files, (() => { const markdown = require('markdown').markdown;