marked/test/unit/marked-spec.js
2018-03-04 00:47:02 -06:00

8 lines
209 B
JavaScript

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