%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
'use strict'; // This tests that closing a watcher when the underlying handle is // already destroyed will result in a noop instead of a crash. const common = require('../common'); if (common.isIBMi) common.skip('IBMi does not support `fs.watch()`'); const tmpdir = require('../common/tmpdir'); const fs = require('fs'); const path = require('path'); tmpdir.refresh(); const root = path.join(tmpdir.path, 'watched-directory'); fs.mkdirSync(root); const watcher = fs.watch(root, { persistent: false, recursive: false }); // The following listeners may or may not be invoked. watcher.addListener('error', () => { setTimeout( () => { watcher.close(); }, // Should not crash if it's invoked common.platformTimeout(10) ); }); watcher.addListener('change', () => { setTimeout( () => { watcher.close(); }, common.platformTimeout(10) ); }); fs.rmdirSync(root); // Wait for the listener to hit setTimeout( common.mustCall(() => {}), common.platformTimeout(100) );