file watcher - skip flaky tests (win, linux) (#212416)

This commit is contained in:
Benjamin Pasero
2024-05-10 08:50:04 +02:00
committed by GitHub
parent 1466eaeb61
commit 7d220c8dda
@@ -743,7 +743,7 @@ export class TestParcelWatcher extends ParcelWatcher {
await testCorrelatedWatchFolderDoesNotExist(false);
});
test('correlated watch requests support suspend/resume (folder, does not exist in beginning, reusing watcher)', async () => {
(!isMacintosh /* Linux/Windows: times out for some reason */ ? test.skip : test)('correlated watch requests support suspend/resume (folder, does not exist in beginning, reusing watcher)', async () => {
await testCorrelatedWatchFolderDoesNotExist(true);
});
@@ -798,7 +798,7 @@ export class TestParcelWatcher extends ParcelWatcher {
await testCorrelatedWatchFolderExists(false);
});
test('correlated watch requests support suspend/resume (folder, exist in beginning, reusing watcher)', async () => {
(!isMacintosh /* Linux/Windows: times out for some reason */ ? test.skip : test)('correlated watch requests support suspend/resume (folder, exist in beginning, reusing watcher)', async () => {
await testCorrelatedWatchFolderExists(true);
});