cli.js 319 B

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