From eca03a93107b8cb9d589b510fc06211d113813f4 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 20 Nov 2019 23:53:17 +0100 Subject: [PATCH] ignore type which might be missing on linux --- packages/jest-haste-map/src/lib/FSEventsWatcher.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/jest-haste-map/src/lib/FSEventsWatcher.ts b/packages/jest-haste-map/src/lib/FSEventsWatcher.ts index 08b74ade6338..8034fde92163 100644 --- a/packages/jest-haste-map/src/lib/FSEventsWatcher.ts +++ b/packages/jest-haste-map/src/lib/FSEventsWatcher.ts @@ -14,6 +14,7 @@ import micromatch = require('micromatch'); // @ts-ignore no types import walker from 'walker'; +// @ts-ignore: this is for CI which runs linux and might not have this let fsevents: typeof import('fsevents') | null = null; try { fsevents = require('fsevents');