testsuite.issues.js 476 B

1234567891011121314
  1. /**
  2. * Created by Estevao on 08-06-2015.
  3. */
  4. var bootstrap = require('./makehtml.bootstrap.js'),
  5. converter = new bootstrap.showdown.Converter(),
  6. assertion = bootstrap.assertion,
  7. testsuite = bootstrap.getTestSuite('test/functional/makehtml/cases/issues/');
  8. describe('makeHtml() issues testsuite', function () {
  9. 'use strict';
  10. for (var i = 0; i < testsuite.length; ++i) {
  11. it(testsuite[i].name.replace(/-/g, ' '), assertion(testsuite[i], converter));
  12. }
  13. });