themer/cli/packages/firefox-color/lib/index.spec.js
2020-04-25 07:30:21 -06:00

18 lines
662 B
JavaScript

const {render, renderInstructions} = require('./index');
const {colors} = require('../../colors-default');
describe('Firefox Color theme generator', () => {
it('should render properly formatted URL files', 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();
});
});