themer/cli/packages/wox/lib/index.spec.js
2020-05-05 06:46:09 -06:00

18 lines
642 B
JavaScript

const { render, renderInstructions } = require('./index');
const { colors } = require('../../colors-default');
describe('themer wox theme generator', () => {
it('should render properly', async () => {
const files = await Promise.all(render(colors))
expect(files.length).toBe(2);
files.forEach(file => {
expect(file.contents.toString('utf8')).toMatchSnapshot();
});
});
it('should provide installation instructions', async () => {
const files = await Promise.all(render(colors));
const instructions = renderInstructions(files.map(({ name }) => name));
expect(instructions).toMatchSnapshot();
});
});