themer
Version: 
Customizable theme creator for editors, terminals, wallpaper, and more.
17 lines (15 loc) • 353 B
text/typescript
import test from 'ava';
import themer from '../index.js';
test('slack', async (t) => {
  for await (const file of themer(['default'], ['warp'], {
    wallpaperSizes: [],
  })) {
    if (!file.path.includes('README.md')) {
      t.regex(
        file.content,
        /(?:darker|lighter)/,
        'contains valid details value',
      );
    }
  }
});