github-markdown-css/test.js

14 lines
287 B
JavaScript
Raw Permalink Normal View History

2014-05-08 02:02:46 +08:00
'use strict';
var assert = require('assert');
var githubMarkdownCss = require('./index');
it('should get the GitHub Markdown CSS', function (cb) {
this.timeout(20000);
githubMarkdownCss(function (err, css) {
assert(!err, err);
assert(/markdown-body/.test(css));
cb();
});
});