Sometimes you need to skip a test based on a condition, for example, only skip the test when run on Windows. This would be kinda ugly to apply to the existing `.skip` modifier though: ```js test.skip(process.platform === 'win32')('x', t => { t.fail(); }); ``` Maybe AVA could also support trailing modifiers: ```js test('x', t => { t.fail(); }) .skip(process.platform === 'win32'); ```