mirror of
https://github.com/sindresorhus/github-markdown-css.git
synced 2024-03-22 13:10:53 +08:00
14 lines
287 B
JavaScript
14 lines
287 B
JavaScript
'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();
|
|
});
|
|
});
|