themer
Version: 
Customizable theme creator for editors, terminals, wallpaper, and more.
14 lines (12 loc) • 372 B
text/typescript
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');
    }
  }
});