themer/cli/packages/wallpaper-shirts/lib/index.spec.js
2020-04-25 14:36:21 -06:00

19 lines
665 B
JavaScript

const { render, renderInstructions } = require('./index');
const { colors } = require('../../colors-default');
describe('themer "shirts" wallpaper', () => {
it('should render valid SVG', done => {
Promise.all(render(colors, {})).then(files => {
files.forEach(file => {
expect(file.contents.toString('utf8')).toMatchSnapshot();
});
done();
});
});
it('should list output files', async () => {
const files = await Promise.all(render(colors, { 'themer-wallpaper-shirts-size': '1000x1000' }));
const instructions = renderInstructions(files.map(({ name }) => name));
expect(instructions).toMatchSnapshot();
});
});