themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
13 lines • 439 B
JavaScript
import test from 'ava';
import themer from '../index.js';
test('slack', async (t) => {
for await (const file of themer(['default'], ['slack'], {
wallpaperSizes: [],
})) {
if (!file.path.includes('README.md')) {
t.notRegex(file.content, /\,\,/, 'contains no missing values');
t.notRegex(file.content, /\s/, 'contains no whitespace');
}
}
});
//# sourceMappingURL=slack.spec.js.map