diff --git a/test/kitchen.ts b/test/kitchen.ts index df1888e2..c39e4848 100644 --- a/test/kitchen.ts +++ b/test/kitchen.ts @@ -18,7 +18,9 @@ const execOpts = { encoding: 'utf8' as BufferEncoding, }; -describe('🚰 kitchen sink', () => { +const action = process.platform !== 'win32' ? describe : describe.skip; + +action('🚰 kitchen sink', () => { const fixturesPath = path.join('test', 'fixtures'); const gtsPath = path.join('node_modules', '.bin', 'gts'); const kitchenPath = path.join(stagingPath, 'kitchen');