test('string with whitespaces', async t => {
    const {stdout} = await execa('./cli.js', ['  foo bar     baz ']);
    t.is(parseInt(stdout), lexisCount('  foo bar     baz '));
});