var cheerio = require('cheerio'); var mock = require('./mock'); var AssetsInliner = require('../lib/output/assets-inliner'); describe('Assets Inliner Output', function() { describe('SVG', function() { var output; before(function() { return mock.outputDefaultBook(AssetsInliner, { 'README.md': '![image](test.svg)', 'test.svg': '' }) .then(function(_output) { output = _output; }); }); it('should correctly convert to PNG', function() { var readme = output.book.getPage('README.md'); var $ = cheerio.load(readme.content); // Is there an image? var $img = $('img'); $img.length.should.equal(1); // Does the file exists var src = $img.attr('src'); output.should.have.file(src); }); }); });