marked/test/unit/marked-spec.js
2018-03-03 21:33:02 -06:00

6 lines
150 B
JavaScript

var marked = require('../../lib/marked.js');
it('should run the test', function () {
expect(marked('Hello World!')).toContain('Hello World!');
});