markdown-bdd

0.1.0-rc1 • Public • Published

markdown-mdd

Use code blocks from markdown documents in your tests

Take this README file for example. There are multiple code blocks in here, that serve as usage examples for the user. However, since these examples are supposed to describe what the module does, why not go ahead and use them as the specification?

Usage Example

Ok, hang on, I'll explain later. First have a look at this example:

var markdownBdd = require('markdown-bdd');
 
// declare what to use as input and what global variables to assume
var example = markdownBdd('README.md', {
  describe: describe,
  example: function() {},
  it: it
});
 
describe('markdown-bdd', function() {
  example('Usage Example', function() {
    it('should be runnable with mocha', function (done) {
      // ...
    });
  });
});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.0-rc1
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.0-rc1
    0

Package Sidebar

Install

npm i markdown-bdd

Weekly Downloads

0

Version

0.1.0-rc1

License

MIT

Last publish

Collaborators

  • jpommerening