From d1d3d026956312f0b83727c64e455a8e7bd1c1ed Mon Sep 17 00:00:00 2001 From: Hemal Patel Date: Mon, 7 Jan 2019 08:24:12 +0530 Subject: [PATCH] tests: make comment clear about fs.copyFileSync --- .../watch/info-verbosity-off/info-verbosity-off.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/binCases/watch/info-verbosity-off/info-verbosity-off.test.js b/test/binCases/watch/info-verbosity-off/info-verbosity-off.test.js index 38552c6cf3b..38ab3067089 100644 --- a/test/binCases/watch/info-verbosity-off/info-verbosity-off.test.js +++ b/test/binCases/watch/info-verbosity-off/info-verbosity-off.test.js @@ -16,7 +16,7 @@ const copyFilePath = path.resolve(__dirname, copyFile); // create copy of "index.js" => "index_copy.js" beforeEach(() => { // fs.copyFileSync was added in Added in: v8.5.0 - // We should migrate it once we stop support for v6.x + // We should refactor the below code once our minimal supported version is v8.5.0 fs.createReadStream(fileToChangePath).pipe(fs.createWriteStream(copyFilePath)); });