cli.js 351 B

1234567891011121314
  1. var execSync = require('child_process').execSync,
  2. cmd = 'node bin/showdown.js';
  3. describe('showdown cli', function () {
  4. 'use strict';
  5. it('basic stdin stdout', function () {
  6. var otp = execSync(cmd + ' makehtml', {
  7. encoding: 'utf8',
  8. input: '**foo**'
  9. });
  10. otp.trim().should.equal('<p><strong>foo</strong></p>');
  11. });
  12. });