@baravak/svgexport
Version:
Node.js module and command-line tool for exporting SVG to PNG and JPEG.
44 lines (40 loc) • 858 B
JavaScript
var resize = require('../resize');
var expect = require('expect.js');
describe('Resize', function() {
it('width', function() {
var output = resize({
width : 1,
height : 1
}, {
width : 5
});
expect(output.width).equal(5);
expect(output.height).equal(5);
expect(output.scale).equal(5);
});
it('both', function() {
var output = resize({
width : 1,
height : 1
}, {
width : 5,
height : 2
});
expect(output.width).equal(5);
expect(output.height).equal(2);
expect(output.scale).equal(5);
});
it('pad', function() {
var output = resize({
width : 1,
height : 1
}, {
width : 5,
height : 2,
mode : 'pad'
});
expect(output.width).equal(5);
expect(output.height).equal(2);
expect(output.scale).equal(2);
});
});