..
2017-07-03 17:00:19 -07:00
2017-07-01 20:33:17 -07:00
2015-01-11 19:17:44 -08:00
2017-07-03 17:00:19 -07:00
2015-03-06 08:35:09 -08:00
2015-01-16 09:02:13 -08:00

'use strict';

describe('jsdoc/readme', function() {
    var jsdoc = { readme: require('jsdoc/readme') };
    var Readme = jsdoc.readme;
    var html = (new Readme('test/fixtures/markdowntest.md')).html;

    it('should convert Markdown files to HTML', function() {
        expect(html).toBeDefined();
        expect(typeof html).toBe('string');
        expect(html).toContain('<code>');
        expect(html).toContain('<h2>');
        expect(html).toContain('<p>');
        expect(html).toContain('<li>');
    });
});